Skip to content

Instantly share code, notes, and snippets.

@mlg87
Created July 21, 2020 21:03
Show Gist options
  • Save mlg87/1d71ffaa7bd88b73ebd17feceda6007e to your computer and use it in GitHub Desktop.
Save mlg87/1d71ffaa7bd88b73ebd17feceda6007e to your computer and use it in GitHub Desktop.
Using Apollo Client for global state management code samples - src/Balloon/defaults.ts
// src/Balloon/defaults.ts
import { IBalloon } from "../types/graphql"; // <-- we will auto-generate this file a bit later in the post
const defaultSelectedBalloon: IBalloon = {
color: "",
id: "",
};
export default {
selectedBalloon: { ...defaultSelectedBalloon, __typename: "Balloon" },
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment