如何将 NonNull 设置为连接类中的节点和边?
Posted
技术标签:
【中文标题】如何将 NonNull 设置为连接类中的节点和边?【英文标题】:How to set NonNull to node and edges in connection class? 【发布时间】:2021-08-01 09:53:42 【问题描述】:我想将 NonNull 添加到连接的节点和边。
class TestSchema(SQLAlchemyObjectType):
class Meta:
model = Test
interfaces = (relay.Node,)
id = graphene.ID(required=True)
当我在 Graphql Playground 中查看文档资源管理器时,
在TestSchemaConnection中
edges: [TestSchemaEdge]!
在 TestSchemaEdge 中
node: TestSchema
但我想要“!”括号内不能为空,如下所示。
edges: [TestSchemaEdge!]!
node: TestSchema!
有没有办法做到这一点?
【问题讨论】:
【参考方案1】:我认为这是不可能的,截至:https://github.com/graphql-python/graphene/issues/968
似乎已将其作为问题解决,但未解决。
【讨论】:
正如目前所写,您的答案尚不清楚。请edit 添加其他详细信息,以帮助其他人了解这如何解决所提出的问题。你可以找到更多关于如何写好答案的信息in the help center。以上是关于如何将 NonNull 设置为连接类中的节点和边?的主要内容,如果未能解决你的问题,请参考以下文章