Created
October 15, 2019 17:33
-
-
Save helloncanella/16966df614521117abe976ae22e0fd30 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const LIST = gql` | |
query List($category: String!) { | |
list(category: $category) { | |
id | |
description | |
} | |
} | |
` | |
const [list, setList] = useAppState({ | |
query: LIST, | |
variables: { category: "to-be-done" } | |
}) | |
const todo = { | |
id: "1234", | |
description: "Take the cat to the vet 🐱 🏥 ", | |
__typename: "Item" | |
} | |
setList([...(list || []), todo]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment