I am trying to write an RQL query that makes the equivalent of this sql:
select * from some_table t where t.property in (1, 2, 3, 4 ...)
I'm not sure if RQL supports this. There is an example in oracle docs on how to do this in the repository item id property:
ID IN { "0002421", "0002219", "0003244" ... }
but when I try to change the identifier in this example to the property I want to query, I get a RQL ParseException.
Does anyone know if this is possible?
source
share