gpt4 book ai didi

python - 是否有可能将对象数组(json)作为突变的输入字段传递? Graphite 烯- python

转载 作者:太空宇宙 更新时间:2023-11-03 14:18:40 26 4
gpt4 key购买 nike

我正在尝试传递 json 字段作为我的 graphql 突变的输入。我一直在尝试和寻找,但没有运气。我可以通过定义 graphene.List(graphene.String) 来很好地传递数组,我知道它可以用于传递字符串数组。

我认为有一个名为 graphene.JSONstring() 的类型,如果我将它与 graphene.List(graphene.JSONstring) 一起使用,我认为它会起作用,但没有运气,仍然收到错误,提示类型不正确。

我在突变期间有这样的事情

    mutation {
create(data:{
field1: [
{
"first": "first",
"last": "last"
},
{
"first":"first1",
"last":"last1"
}
]
})
}

对于输入类

class NameInput(graphene.InputObjectType):
# please ignore the same field names, just listing what I have tried
field1 = graphene.JSONString()
field1 = graphene.List(graphene.JSONString)
field1 = graphene.List(graphene.String)

有人知道这是如何工作的吗?

提前致谢

最佳答案

似乎您正在尝试嵌套输入对象。不幸的是,我从未使用过 Graphite 烯,但也许我可以根据 GraphQL 规范来回答,然后对 Graphite 烯代码做出有根据的猜测:

type Mutation {
create(data: NameInput): Boolean # <- Please don't return just Boolean
}

input NameInput {
field1: FistLastInput[]
}

input FirstLastInput {
first: String!
last: String!
}

这意味着您将需要两个输入对象来描述输入的结构。为您的对象创建一个新类,该类采用字段 firstlast:

class FirstLastInput(graphene.InputObjectType):
first = graphene.NonNull(graphene.String)
last = graphene.NonNull(graphene.String)

现在我们可以在初始查询中使用输入对象:

class NameInput(graphene.InputObjectType):
field1 = graphene.List(FirstLastInput)

关于python - 是否有可能将对象数组(json)作为突变的输入字段传递? Graphite 烯- python ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48087665/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com