12 lines
159 B
Plaintext
12 lines
159 B
Plaintext
|
query {
|
||
|
products(
|
||
|
where: {
|
||
|
and: {
|
||
|
not: { id: { is_null: true } },
|
||
|
price: { gt: 10 }
|
||
|
}}) {
|
||
|
id
|
||
|
name
|
||
|
price
|
||
|
}
|
||
|
}
|