Created
May 29, 2021 13:09
-
-
Save iskenxan/049b159bab76582210642ce3870cd682 to your computer and use it in GitHub Desktop.
This file contains 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 "@apollo/client"; | |
export const GET_LAUNCHES = gql` | |
query GetLaunches { | |
launchesPast(limit: 10) { | |
mission_name | |
launch_date_local | |
launch_site { | |
site_name_long | |
} | |
rocket { | |
rocket_name | |
} | |
} | |
} | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment