Created
November 16, 2012 22:11
-
-
Save michaellperry/4091337 to your computer and use it in GitHub Desktop.
Minimal Correspondence model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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