Skip to content

Instantly share code, notes, and snippets.

@maticzav
Created January 3, 2018 14:24
Show Gist options
  • Save maticzav/4ded946dff6ed742a96a198bba922a4a to your computer and use it in GitHub Desktop.
Save maticzav/4ded946dff6ed742a96a198bba922a4a to your computer and use it in GitHub Desktop.
# database/datamodel/types.graphql
type User {
id: ID! @unique
createdAt: DateTime!
updatedAt: DateTime!
githubUserId: String! @unique
name: String!
bio: String!
public_repos: Int!
public_gists: Int!
notes: [Note!]! @relation(name: "UserNote")
}
type Note {
id: ID! @unique
owner: User! @relation(name: "UserNote")
text: String!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment