Skip to content

Instantly share code, notes, and snippets.

@treyhuffine
Created April 20, 2019 21:10
Show Gist options
  • Select an option

  • Save treyhuffine/f162a44589f69d0062a39723feed87fe to your computer and use it in GitHub Desktop.

Select an option

Save treyhuffine/f162a44589f69d0062a39723feed87fe to your computer and use it in GitHub Desktop.
import gql from 'graphql-tag';
export const QUERY_LAUNCH_PROFILE = gql`
query LaunchProfile($id: String!) {
launch(id: $id) {
flight_number
mission_name
launch_year
launch_success
details
launch_site {
site_name
}
rocket {
rocket_name
rocket_type
}
links {
flickr_images
}
}
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment