super-graph/core/corpus/2

14 lines
191 B
Plaintext

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