From 0740b73597644c9eb0b467fb75124f35b7880c30 Mon Sep 17 00:00:00 2001 From: Aidan Cooper Date: Wed, 1 Nov 2023 14:01:29 +0000 Subject: [PATCH] Update README.md Fix the sample query. Second parameter (queryConditions) needed to have the 'String = ' added, otherwise it was failing when run in the explorer. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f382b0c..be0afe5 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Type "{" then ctrl-space in the editor and you will see the available GraphQL Se Sample query: ``` -query ($limit: Int = 5, $queryConditions: "active=true") { +query ($limit: Int = 5, $queryConditions: String = "active=true") { GlideRecord_Query { incident(queryConditions: $queryConditions, pagination: {limit: $limit}) { _rowCount