409 B
409 B
Problems
- Setting type directly on field:
fields: ()=>{
username: GraphQLString
}
threw this error:
Unhandled rejection Error: Query.viewer field type must be Output Type but got: undefined
Must pass object:
fields: ()=>{
username: {
type: GraphQLString
}
}