graphql-go-walkthrough
graphql-go-walkthrough copied to clipboard
chore: updates user query & createNote mutation
- While both queries work I think changing
OpName
toUser
is clearer since it's finding a single user. - In
CreateNote
the note is currently being appended to every user, this is fixed by checking that the passed in ID matches the user's ID before appending.