From 7a7e4c754eec4bbe1314c0cc0fec9935d70c0102 Mon Sep 17 00:00:00 2001 From: Shinsina Date: Tue, 30 Nov 2021 12:16:24 -0600 Subject: [PATCH] Make field non-nullable. --- .../src/graphql/definitions/platform/content/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/graphql-server/src/graphql/definitions/platform/content/index.js b/services/graphql-server/src/graphql/definitions/platform/content/index.js index a8f473ff9..d3090a7a6 100644 --- a/services/graphql-server/src/graphql/definitions/platform/content/index.js +++ b/services/graphql-server/src/graphql/definitions/platform/content/index.js @@ -486,7 +486,7 @@ input AllPublishedContentQueryInput { "Deprecated. Use includeContentTypes instead." contentTypes: [ContentType!] = [] "Limit results to items matching specific custom attribute key value pairs" - customAttributes: [ContentCustomAttributeQueryInput] = [] + customAttributes: [ContentCustomAttributeQueryInput!] = [] "Limit results to items matching at least one of these types." includeContentTypes: [ContentType!] = [] "Limit results to items matching none of these types."