这是一个简单的问题。有没有办法在GraphQL中自引用类型?
假设我有以下内容:
type MyType {
id: ID!
nodes: [MyType]
}
是的,就像一棵树或类似的东西。
我收到此错误:
"Error: GraphQL error: Field "nodes" of type "[MyType]" must have a selection of subfields. Did you mean "nodes { ... }"?
我正在使用Apollo。