Skip to content

Instantly share code, notes, and snippets.

@bengrunfeld
Created June 2, 2021 15:46
Show Gist options
  • Save bengrunfeld/dfbb1ea3ecb37b1e37eb4a222caefd3d to your computer and use it in GitHub Desktop.
Save bengrunfeld/dfbb1ea3ecb37b1e37eb4a222caefd3d to your computer and use it in GitHub Desktop.
Scalable GraphQL Types
export const types = `
type User {
id: ID
email: String
password: String
loggedIn: Boolean
firstName: String
lastName: String
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment