Improvements for migrations (#2556)
* Fix wrong var name * Add is null is not null filtering on dates * Simplify
This commit is contained in:
@ -6,6 +6,7 @@ export const DateFilterType = new GraphQLInputObjectType({
|
||||
name: 'DateFilter',
|
||||
fields: {
|
||||
eq: { type: DateScalarType },
|
||||
is: { type: DateScalarType },
|
||||
gt: { type: DateScalarType },
|
||||
gte: { type: DateScalarType },
|
||||
in: { type: new GraphQLList(new GraphQLNonNull(DateScalarType)) },
|
||||
|
||||
Reference in New Issue
Block a user