playground icon indicating copy to clipboard operation
playground copied to clipboard

Support intersection arrow syntax in playground

Open tstirrat15 opened this issue 1 year ago • 0 comments

Description

Copy and paste this schema in:

definition user {}

definition group {
    relation user: user

    permission view = user
}

definition thing {
    relation group: group

    permission view = group.all(view)
}

See that you get:

Expected end of statement or definition, found: TokenTypePeriod

Note

This is a known issue; we have a beta that we're testing with it now.

tstirrat15 avatar Sep 03 '24 16:09 tstirrat15