14 lines
191 B
Plaintext
14 lines
191 B
Plaintext
|
query {
|
||
|
products(
|
||
|
where: {
|
||
|
or: {
|
||
|
not: { id: { is_null: true } },
|
||
|
price: { gt: 10 },
|
||
|
price: { lt: 20 }
|
||
|
} }
|
||
|
) {
|
||
|
id
|
||
|
name
|
||
|
price
|
||
|
}
|
||
|
}
|