Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save flyingsilverfin/1ebc2840e84789cc6ba3f6b046cefc00 to your computer and use it in GitHub Desktop.
Save flyingsilverfin/1ebc2840e84789cc6ba3f6b046cefc00 to your computer and use it in GitHub Desktop.
Rules in TypeDB blog: owners have write access rule
rule owners-have-write-access:
when {
(resource: $r, owner: $owner) isa resource-ownership;
} then {
(writer: $owner, writable: $r) isa write-access;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment