Skip to content

Commit ea6d806

Browse files
committed
build.EXPORTABLE -> EXPORTABLE
1 parent 40d1a0c commit ea6d806

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/PgConnectionArgFilterLogicalOperatorsPlugin.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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");

src/PgConnectionArgFilterPlugin.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,7 @@ export const PgConnectionArgFilterPlugin: GraphileConfig.Plugin = {
386386
connectionFilterAllowNullInput,
387387
connectionFilterAllowEmptyObjectInput,
388388
},
389+
EXPORTABLE,
389390
} = build;
390391
const {
391392
scope: {
@@ -444,7 +445,7 @@ export const PgConnectionArgFilterPlugin: GraphileConfig.Plugin = {
444445
return args;
445446
}
446447

447-
const assertAllowed = build.EXPORTABLE(
448+
const assertAllowed = EXPORTABLE(
448449
() =>
449450
function (fieldArgs: FieldArgs) {
450451
const $raw = fieldArgs.getRaw();

0 commit comments

Comments
 (0)