Skip to content

Instantly share code, notes, and snippets.

@eyeccc
Created June 13, 2019 02:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eyeccc/f85abad51b005b8883da3f8330326086 to your computer and use it in GitHub Desktop.
Save eyeccc/f85abad51b005b8883da3f8330326086 to your computer and use it in GitHub Desktop.
export type Scalars = {
ID: string;
String: string;
Boolean: boolean;
Int: number;
Float: number;
};
export type Node = {
id: Scalars["ID"];
};
export type Person = Node & {
id: Scalars["ID"];
name: Scalars["String"];
email: Scalars["String"];
age: Scalars["Int"];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment