From b105601616ad8889f2dd53ca14b9664a9e7cfff6 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Tue, 18 Feb 2025 09:56:52 +0000 Subject: [PATCH] Update tck tests --- .../field-level-aggregations/field-level-aggregations.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/graphql/tests/tck/aggregations/field-level-aggregations/field-level-aggregations.test.ts b/packages/graphql/tests/tck/aggregations/field-level-aggregations/field-level-aggregations.test.ts index 2983e0c11c..7d46fd173d 100644 --- a/packages/graphql/tests/tck/aggregations/field-level-aggregations/field-level-aggregations.test.ts +++ b/packages/graphql/tests/tck/aggregations/field-level-aggregations/field-level-aggregations.test.ts @@ -70,7 +70,7 @@ describe("Field Level Aggregations", () => { CALL { WITH this MATCH (this)<-[this0:ACTED_IN]-(this1:Actor) - RETURN { nodes: count(DISTINCT this1), edges: count(DISTINCT this0) } AS var2 + RETURN { nodes: count(this1), edges: count(this0) } AS var2 } CALL { WITH *