Skip to content

Instantly share code, notes, and snippets.

@jelorivera08
Created January 28, 2020 05:57
Show Gist options
  • Save jelorivera08/6f441cc89e88d03ccc2179d5584b59ac to your computer and use it in GitHub Desktop.
Save jelorivera08/6f441cc89e88d03ccc2179d5584b59ac to your computer and use it in GitHub Desktop.
type Mutation {
createNote(content: String): Note
deleteNote(_id: ID): ID
updateNote(_id: ID, content: String): Note
}
type Note {
_id: ID
content: String
}
type Query {
notes: [Note]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment