search field check does not work with ':' entity property syntax
entity Event{ completed : Bool search mapping{ completed } function test(){ var s := (search Event matching completed: +true) } }
'completed' is not a search field for Event
workaround:
Submitted by Danny Groenewegen on 29 April 2016 at 13:38entity Event{ completed :: Bool search mapping{ completed } function test(){ var s := (search Event matching completed: +true) } }
Log in to post comments