Created
November 6, 2017 06:13
-
-
Save quiaro/167ded93424a0dade6277b3593228044 to your computer and use it in GitHub Desktop.
user type - Graphcool with Auth0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type User @model { | |
| # Required system field: | |
| id: ID! @isUnique # read-only (managed by Graphcool) | |
| # Optional system fields (remove if not needed): | |
| createdAt: DateTime! # read-only (managed by Graphcool) | |
| updatedAt: DateTime! # read-only (managed by Graphcool) | |
| email: String | |
| auth0UserId: String @isUnique | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment