Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save flyingsilverfin/09351c9c199fe6e84ebd43f017552591 to your computer and use it in GitHub Desktop.
Save flyingsilverfin/09351c9c199fe6e84ebd43f017552591 to your computer and use it in GitHub Desktop.
Implementing labelled property graphs in TypeQL
define
vertex sub entity,
owns label,
plays undirected-edge:end,
plays directed-edge:from,
plays directe-edge:to;
undirected-edge sub relation,
owns label,
relates end;
directed-edge sub relation,
owns label,
relates from,
relates to;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment