Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save grantvanhorn/54ffb2d7c7a1eacfd95ded751e300699 to your computer and use it in GitHub Desktop.
Save grantvanhorn/54ffb2d7c7a1eacfd95ded751e300699 to your computer and use it in GitHub Desktop.
type BudgetUser {
createdAt: DateTime!
id: ID! @inUnique
name: String! @isUnique
updatedAt: DateTime!
budgets: [Budget!]! @relation(name: "UserBudgets")
}
type Budget {
createdAt: DateTime!
id: ID! @inUnique
users: [BudgetUser!]! @relation(name: "UserBudgets")
allocation: Int!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment