@@ -14,6 +14,7 @@ export const PgConnectionArgFilterLogicalOperatorsPlugin: GraphileConfig.Plugin
1414 const {
1515 extend,
1616 graphql : { GraphQLList, GraphQLNonNull } ,
17+ EXPORTABLE ,
1718 } = build ;
1819 const {
1920 fieldWithHooks,
@@ -39,7 +40,7 @@ export const PgConnectionArgFilterLogicalOperatorsPlugin: GraphileConfig.Plugin
3940 {
4041 description : `Checks for all expressions in this list.` ,
4142 type : new GraphQLList ( new GraphQLNonNull ( Self ) ) ,
42- applyPlan : build . EXPORTABLE (
43+ applyPlan : EXPORTABLE (
4344 ( ) =>
4445 function ( $where : PgConditionStep < any > , fieldArgs ) {
4546 assertAllowed ( fieldArgs , "list" ) ;
@@ -60,7 +61,7 @@ export const PgConnectionArgFilterLogicalOperatorsPlugin: GraphileConfig.Plugin
6061 {
6162 description : `Checks for any expressions in this list.` ,
6263 type : new GraphQLList ( new GraphQLNonNull ( Self ) ) ,
63- applyPlan : build . EXPORTABLE (
64+ applyPlan : EXPORTABLE (
6465 ( ) =>
6566 function ( $where : PgConditionStep < any > , fieldArgs ) {
6667 assertAllowed ( fieldArgs , "list" ) ;
@@ -80,7 +81,7 @@ export const PgConnectionArgFilterLogicalOperatorsPlugin: GraphileConfig.Plugin
8081 {
8182 description : `Negates the expression.` ,
8283 type : Self ,
83- applyPlan : build . EXPORTABLE (
84+ applyPlan : EXPORTABLE (
8485 ( ) =>
8586 function ( $where : PgConditionStep < any > , fieldArgs ) {
8687 assertAllowed ( fieldArgs , "object" ) ;
0 commit comments