Skip to content

Instantly share code, notes, and snippets.

@hwillson
Created February 26, 2019 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hwillson/21948d854d5393b780ecf645e7940160 to your computer and use it in GitHub Desktop.
Save hwillson/21948d854d5393b780ecf645e7940160 to your computer and use it in GitHub Desktop.
Apollo Client - 2.5.0 - Query
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