smstromb

Results 2 issues of smstromb

Version: 0.19.15 For the following schema: ``` type User { required property auth0_id -> str { constraint exclusive; } multi link workspaces -> Workspace { property member_role -> WorkspaceRole; property...

Given the following minimal schema: ``` type Person { required property some_prop -> str; required property some_other_prop -> str; constraint exclusive on ( (.some_prop, .some_other_prop) ); } ``` I would...