From 4cb2274a51069e02c1889d89f06066ad1e6ad13d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20W=C3=B3js?= Date: Sat, 4 Jan 2025 19:35:01 +0100 Subject: [PATCH] fixup! Replaced deprecated resolver expression function usage --- src/bundle/Resources/config/graphql/Content.types.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bundle/Resources/config/graphql/Content.types.yaml b/src/bundle/Resources/config/graphql/Content.types.yaml index 1057dcb..b453627 100644 --- a/src/bundle/Resources/config/graphql/Content.types.yaml +++ b/src/bundle/Resources/config/graphql/Content.types.yaml @@ -74,11 +74,11 @@ Content: reverseRelations: type: "[ContentRelation]" description: "Relations to this Content" - resolve: "@=query('ContentReverseRelations', [value])" + resolve: "@=query('ContentReverseRelations', value)" states: type: "[ObjectState]" description: "Content States." - resolve: "@=query('ObjectStateByContentInfo', [value])" + resolve: "@=query('ObjectStateByContentInfo', value)" ContentRelation: type: "object"