File tree 2 files changed +2
-2
lines changed
packages/integrations/gei-bookings
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gei-bookings" ,
3
- "version" : " 0.2.0 " ,
3
+ "version" : " 0.2.1 " ,
4
4
"description" : " Automatically generated by graphql-editor-cli" ,
5
5
"main" : " lib/index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export const listServices = async (input: FieldResolveInput) =>
11
11
const po = preparePageOptions ( args ?. input ?. page ) ;
12
12
const pa =
13
13
args ?. input ?. filters &&
14
- Object . fromEntries ( Object . entries ( args ?. input ?. filters ) . filter ( ( v ) => v !== null && v !== undefined ) ) ;
14
+ Object . fromEntries ( Object . entries ( args ?. input ?. filters ) . filter ( ( v ) => v !== null && v !== undefined && v [ 0 ] !== 'fromDate' && v [ 0 ] !== 'toDate' ) ) ;
15
15
const fromDate = isScalarDate ( args ?. input ?. filters ?. fromDate )
16
16
? isScalarDate ( args ?. input ?. filters ?. fromDate )
17
17
: undefined ;
You can’t perform that action at this time.
0 commit comments