Skip to content

Instantly share code, notes, and snippets.

@mlg87
Created July 21, 2020 20:58
Show Gist options
  • Save mlg87/d53f715dc0b8a9f32c24eef6d44e5a69 to your computer and use it in GitHub Desktop.
Save mlg87/d53f715dc0b8a9f32c24eef6d44e5a69 to your computer and use it in GitHub Desktop.
Using Apollo Client for global state management code samples - src_Balloon_queries.ts
// src/Balloon/queries.ts
import gql from "graphql-tag";
//
// ─── GQL TAGS ───────────────────────────────────────────────────────────────────
//
export const GetSelectedBalloonLocal = gql`
query GetSelectedBalloonLocal {
selectedBalloon @client {
color
id
}
}
`;
export const GetBalloons = gql`
query GetBalloons {
balloons {
color
id
}
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment