Skip to content

Instantly share code, notes, and snippets.

@SilencerWeb
Created November 25, 2018 01:39
Show Gist options
  • Save SilencerWeb/70a497fe4694121d0e294e190755eae9 to your computer and use it in GitHub Desktop.
Save SilencerWeb/70a497fe4694121d0e294e190755eae9 to your computer and use it in GitHub Desktop.
type Rule {
id: ID! @unique
name: String! @unique
options: [RuleOption!]! @relation(name: "RuleOnRuleOption" onDelete: CASCADE)
}
type RuleOption {
id: ID! @unique
name: String!
value: String!
rule: Rule! @relation(name: "RuleOnRuleOption")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment