Skip to content

Instantly share code, notes, and snippets.

@gc-codesnippets
Last active May 8, 2018 12:32
Show Gist options
  • Select an option

  • Save gc-codesnippets/b809d9d01ccf6eac40e93314f8f3b4f6 to your computer and use it in GitHub Desktop.

Select an option

Save gc-codesnippets/b809d9d01ccf6eac40e93314f8f3b4f6 to your computer and use it in GitHub Desktop.
type User @pgTable(name: "users") {
id: ID! @unique
isAdmin: Boolean! @default(value: false)
posts: [Post!]!
comments: [Comment!]!
}
type Post @pgTable(name: "posts") {
id: ID! @unique
title: String!
text: String!
author: User! @pgRelation(column: "user_id")!
comments: [Comment!]!
}
type Comment @pgTable(name: "comments") {
id: ID! @unique
text: String!
author: User! @pgRelation(column: "user_id")!
post: Post! @pgRelation(column: "post_id")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment