Created
February 26, 2019 15:44
-
-
Save hwillson/21948d854d5393b780ecf645e7940160 to your computer and use it in GitHub Desktop.
Apollo Client - 2.5.0 - Query
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 GET_LAUNCH_DETAILS = gql` | |
query LaunchDetails($launchId: ID!) { | |
launch(id: $launchId) { | |
isInCart @client | |
site | |
rocket { | |
type | |
} | |
} | |
} | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment