Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的查询输入类似于:
[{name: "joe", age: 20}, {name: "bob", age: 30}]
然后我使用解析器返回类似的东西:
[{name: "joe", age: 20}, {name: "bob", age: 30}, {name: "jane", age: 21}]
假设我不更改数据集,因此无需使用 mutate。
我正在使用flask_graphql和graphene
flask_graphql
graphene
实现这一点的更好方法是什么?(我的意思是如何构建模式)谢谢!
不确定用例,但GenericScalar可能会有所帮助。
data = graphene.GenericScalar()
在突变中,这不会有任何特定的模式。输入可以接受任何结构。