具有包含名称列表的文件。使用此链接building a graphql api,可以了解如何创建一个应用程序以及如何使用内置的ide graphiql运行查询。
如何从应用程序本身实际进行突变。 (来自graphiql的不是。)
给出列表,
project_name = ['A','B','C']。如何确保此数据进入db表。
使用schema.execute(...)是否起作用。如何实现它。
谢谢。
编辑:
Graphene-python doc for mutation,此链接建议
schema.execute(query_str)
鉴于settings.py应该具有
GRAPHENE = ['SCHEMA': 'preset.schema.schema],
从哪里调用schema.execute(query_str)。
query_str = '''
mutation addProject {
Project {
id
project_name
}
}
'''