so, the query like this ``` query { Humans(where: { name: { LIKE: ["Luke", "Darth"] } }) { select { name } } } ``` will result in: ``` { Humans: { select: [ { name: 'Luke Skywalker' }, { name: 'Darth Vader' } ] } } ```