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:

entity Event{
  completed :: Bool
  search mapping{
    completed
  }
  function test(){
    var s := (search Event matching completed: +true)
  }
}
Submitted by Danny Groenewegen on 29 April 2016 at 13:38

Log in to post comments