From 722289270ad5acd57cf3dcea07b53019fd791e5d Mon Sep 17 00:00:00 2001 From: Jay Herron Date: Tue, 28 Nov 2023 10:19:02 -0700 Subject: [PATCH] test: Fixes hello world query type to ID --- Tests/GraphitiTests/HelloWorldTests/HelloWorldTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/GraphitiTests/HelloWorldTests/HelloWorldTests.swift b/Tests/GraphitiTests/HelloWorldTests/HelloWorldTests.swift index 381c8ac..9bba4d7 100644 --- a/Tests/GraphitiTests/HelloWorldTests/HelloWorldTests.swift +++ b/Tests/GraphitiTests/HelloWorldTests/HelloWorldTests.swift @@ -271,7 +271,7 @@ class HelloWorldTests: XCTestCase { wait(for: [expectationB], timeout: 10) query = """ - query Query($id: String!) { + query Query($id: ID!) { id(id: $id) } """