From b45ec753e660add3ee26dd1e56b2849fe1d336bb Mon Sep 17 00:00:00 2001 From: Bas Kiers Date: Thu, 26 Oct 2023 11:02:41 +0200 Subject: [PATCH] feat: make graphQLOutputType optional (#402) * feat: make graphQLOutputType optional * Apply suggestions from code review --------- Co-authored-by: Mitch Goudy --- src/requests/typings/deliveryFunction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/requests/typings/deliveryFunction.ts b/src/requests/typings/deliveryFunction.ts index 53c736fe..e04a4034 100644 --- a/src/requests/typings/deliveryFunction.ts +++ b/src/requests/typings/deliveryFunction.ts @@ -23,7 +23,7 @@ export type GraphQLFieldTypeMappingResponse = { export type GraphQLFieldTypeMapping = { contentTypeId: string fieldId: string - graphQLOutputType: string + graphQLOutputType?: string graphQLQueryField: string graphQLQueryArguments: Record }