We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d067000 commit f67f90eCopy full SHA for f67f90e
src/fastcs/transport/graphQL/graphQL.py
@@ -84,7 +84,7 @@ def _process_commands(self, controller_api: ControllerAPI):
84
def _process_sub_apis(self, root_controller_api: ControllerAPI):
85
"""Recursively add fields from the queries and mutations of sub apis"""
86
for controller_api in root_controller_api.sub_apis.values():
87
- name = "".join(controller_api.path)
+ name = "".join([str(node) for node in controller_api.path])
88
child_tree = GraphQLAPI(controller_api)
89
if child_tree.queries:
90
self.queries.append(
0 commit comments