Skip to content

Commit 04daa58

Browse files
committed
Added upgrade instructions for persisted query urls.
1 parent 750c962 commit 04daa58

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

doc/upgrade/beta6.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,20 @@ After:
147147
}
148148
```
149149

150+
### Using persisted queries
151+
152+
If you have been using persisted queries, your clients where calling the endpoint url and passing separate `id` and `version` arguments.
153+
154+
```
155+
/graphql?id=myquery&version=123
156+
```
157+
158+
These have been merged into one `queryId` argument.
159+
160+
```
161+
/graphql?queryId=123:myquery
162+
```
163+
150164
### Null in string results
151165
Due to the way the new execution library handles results, `null` values in Strings, an empty string field will not yield `null` but a string containing `”null”`.
152166

0 commit comments

Comments
 (0)