14 lines
191 B
Plaintext
Raw Normal View History

2019-10-26 03:02:05 -04:00
query {
products(
where: {
or: {
not: { id: { is_null: true } },
price: { gt: 10 },
price: { lt: 20 }
} }
) {
id
name
price
}
}