Skip to content

Instantly share code, notes, and snippets.

@lastmjs
Created March 12, 2018 22:07
Show Gist options
  • Save lastmjs/e0a0f296cceec242592ccd32ff3e2ea6 to your computer and use it in GitHub Desktop.
Save lastmjs/e0a0f296cceec242592ccd32ff3e2ea6 to your computer and use it in GitHub Desktop.

Revisions

  1. lastmjs created this gist Mar 12, 2018.
    10 changes: 10 additions & 0 deletions datamodel.graphql
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    # All types defined here will be fed through the Prisma generation process
    # Essentially, all of these types become database tables

    type User {
    id: ID! @unique
    createdAt: DateTime! @private
    updatedAt: DateTime! @private
    email: String! @unique @userOwns(field: "id")
    password: String! @private
    }