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

12
corpus/4 Normal file
View File

@ -0,0 +1,12 @@
query {
products(
where: {
and: [
{ not: { id: { is_null: true } } },
{ price: { gt: 10 } },
] } ) {
id
name
price
}
}