We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
query
operationName
1 parent b6db78e commit bb399b2Copy full SHA for bb399b2
src/RequestParameters.ts
@@ -31,6 +31,16 @@ export type RequestParameters = {
31
*/
32
previews?: string[];
33
};
34
+ /**
35
+ * The name of the operation to execute.
36
+ * Required only if multiple operations are present in the query document.
37
+ */
38
+ operationName?: string;
39
40
+ * The GraphQL query string to be sent in the request.
41
+ * This is required and must contain a valid GraphQL document.
42
43
+ query?: string;
44
/**
45
* Pass custom meta information for the request. The `request` object will be returned as is.
46
0 commit comments