Skip to content

Instantly share code, notes, and snippets.

@michaellperry
Created November 16, 2012 22:11
Show Gist options
  • Save michaellperry/4091337 to your computer and use it in GitHub Desktop.
Save michaellperry/4091337 to your computer and use it in GitHub Desktop.
Minimal Correspondence model
namespace MyFriends;
fact Individual {
key:
string anonymousId;
query:
Friend* friends {
Friend f : f.individual = this
}
}
fact Friend {
key:
unique;
publish Individual individual;
mutable:
string firstName;
string lastName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment