From 50850af39b740b650872417daae025a82975f2f5 Mon Sep 17 00:00:00 2001 From: Tim Griesser Date: Tue, 21 Feb 2023 12:54:19 -0500 Subject: [PATCH] fix some of the failures --- packages/plugin-relay/src/input-field-builder.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/plugin-relay/src/input-field-builder.ts b/packages/plugin-relay/src/input-field-builder.ts index b3906bbe2..ec1d47200 100644 --- a/packages/plugin-relay/src/input-field-builder.ts +++ b/packages/plugin-relay/src/input-field-builder.ts @@ -37,7 +37,7 @@ inputFieldBuilder.globalIDList = function globalIDList[] )?.map((type: ObjectRef) => ({ typename: this.builder.configStore.getTypeConfig(type).name, - parse: type instanceof NodeRef ? type.parseId : undefined, + parseId: type instanceof NodeRef ? type.parseId : undefined, })) ?? null, }, }) as never; @@ -60,7 +60,7 @@ inputFieldBuilder.globalID = function globalID( (Array.isArray(forTypes) ? forTypes : [forTypes])) as ObjectRef[] )?.map((type: ObjectRef) => ({ typename: this.builder.configStore.getTypeConfig(type).name, - parse: type instanceof NodeRef ? type.parseId : undefined, + parseId: type instanceof NodeRef ? type.parseId : undefined, })) ?? null, }, }) as unknown as InputFieldRef<