You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/upgrade/beta6.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -147,6 +147,20 @@ After:
147
147
}
148
148
```
149
149
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
+
150
164
### Null in string results
151
165
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”`.
0 commit comments