Skip to content

Instantly share code, notes, and snippets.

@hernanif1
Created September 11, 2020 13:45
Show Gist options
  • Save hernanif1/c0fef7d18d7ebcb217ac6e749e5f4276 to your computer and use it in GitHub Desktop.
Save hernanif1/c0fef7d18d7ebcb217ac6e749e5f4276 to your computer and use it in GitHub Desktop.
```
getProduct {
id
name
__typename // auto-included
}
getCart{
id
product{
id
name <- graphql doest need to fetch this data again because it was created by graphql cached in getProduct
__typename // auto-included
}
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment