Add fuzz testing to qcode

This commit is contained in:
Vikram Rangnekar
2019-04-18 21:08:14 -04:00
parent bdf76fcd5e
commit 7f8ab26218
10 changed files with 143 additions and 0 deletions

14
corpus/2 Normal file
View File

@ -0,0 +1,14 @@
query {
products(
where: {
or: {
not: { id: { is_null: true } },
price: { gt: 10 },
price: { lt: 20 }
} }
) {
id
name
price
}
}