Created
April 20, 2019 21:10
-
-
Save treyhuffine/f162a44589f69d0062a39723feed87fe 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
| 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