Skip to content

Instantly share code, notes, and snippets.

@iskenxan
Created May 29, 2021 13:09
Show Gist options
  • Save iskenxan/049b159bab76582210642ce3870cd682 to your computer and use it in GitHub Desktop.
Save iskenxan/049b159bab76582210642ce3870cd682 to your computer and use it in GitHub Desktop.
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