Используя оператор CONTAINS
, вы можете передать несколько параметров.
, например
Файл модели:
participant User identified by id {
o String id
o String[] hobbies
}
Запрос:
query Q6 {
description: "Select all users based on given hobbies"
statement:
SELECT ***.User
WHERE (hobbies CONTAINS ['driving', 'swimming','...']
}