fixes bug with combining AND clauses, extends graphql id operations

This commit is contained in:
James
2020-09-24 09:36:21 -04:00
parent 3feec809e6
commit fbc4429648
2 changed files with 7 additions and 2 deletions

View File

@@ -292,7 +292,7 @@ const buildWhereInputType = (name, fields, parentName) => {
'id',
GraphQLString,
parentName,
['equals', 'not_equals'],
['equals', 'not_equals', 'in', 'not_in'],
),
};