12 lines
170 B
Plaintext
Raw Normal View History

2019-04-18 21:08:14 -04:00
query {
products(
where: {
and: [
{ not: { id: { is_null: true } } },
{ price: { gt: 10 } },
] } ) {
id
name
price
}
}