Created
March 23, 2020 18:35
-
-
Save rohanBagchi/51222408fb50c9cfb291d2f4aa01eddd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mutation AddTodo { | |
insert_todos(objects: {title: "Learning GraphQL", userId: "user-id-1101", complete: false}) { | |
returning { | |
complete | |
date_created | |
id | |
title | |
user { | |
id | |
name | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment