In GraphQL, every field must resolve to concrete data (like Int
, Float
, String
, etc.). The error is pretty straightforward; you need to select fields on xxx
:
query {
allUsers {
edges {
node {
xxx {
other
fields
needed
}
}
}
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…