We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f20c327 commit 1de90b0Copy full SHA for 1de90b0
csfunctions/handler.py
@@ -77,6 +77,10 @@ def link_objects(event: Event):
77
# the list might contain entries that are not objects, so we check first
78
if isinstance(obj, BaseObject):
79
obj.link_objects(data)
80
+ elif isinstance(field, BaseObject):
81
+ # if the field is not a list, we check if it is an object and link it
82
+ field.link_objects(data)
83
+ # if the field is not a list or an object, we ignore it
84
85
86
def execute(function_name: str, request_body: str, function_dir: str = "src") -> str:
0 commit comments