super-graph/corpus/2
2019-04-18 21:08:14 -04:00

14 lines
191 B
Plaintext

query {
products(
where: {
or: {
not: { id: { is_null: true } },
price: { gt: 10 },
price: { lt: 20 }
} }
) {
id
name
price
}
}