node-graphql-server
node-graphql-server copied to clipboard
made the User field in AuthPayload optional
@marktani This should fix this issue https://github.com/graphql-boilerplates/react-fullstack-graphql/issues/359
- It was happening because User is an Object and was marked as required field in schema of AuthPayload. Now it's made optional
Please review.