mirror of https://github.com/langgenius/dify.git
16 lines
548 B
Python
16 lines
548 B
Python
import json
|
|
|
|
from flask_restful import fields
|
|
|
|
from fields.member_fields import simple_account_fields
|
|
from libs.helper import TimestampField
|
|
|
|
workflow_fields = {
|
|
'id': fields.String,
|
|
'graph': fields.Raw(attribute=lambda x: json.loads(x.graph) if hasattr(x, 'graph') else None),
|
|
'created_by': fields.Nested(simple_account_fields, attribute='created_by_account'),
|
|
'created_at': TimestampField,
|
|
'updated_by': fields.Nested(simple_account_fields, attribute='updated_by_account', allow_null=True),
|
|
'updated_at': TimestampField
|
|
}
|