-
Notifications
You must be signed in to change notification settings - Fork 88
Closed
Labels
Status: Up for grabsIssues that are ready to be worked on by anyoneIssues that are ready to be worked on by anyoneType: SupportAny questions, information, or general needs around the SDK or GitHub APIsAny questions, information, or general needs around the SDK or GitHub APIsreleased
Description
Hi. I am trying to put many queries and fragments inside one request.
My POST request's body:
query login {
createSession(email:"[email protected]", password: "foobar"){
session
}
}
query me {
deserializeUser{
id,
email,
name
}
}
I found that I can add ./src/graphql.ts:11
const NON_VARIABLE_OPTIONS = ["method", "baseUrl", "url", "headers", "request", "query", "mediaType"]
add a non-variable option operationName
const NON_VARIABLE_OPTIONS = ["method", "baseUrl", "url", "headers", "request", "query", "mediaType","operationName"]
Please give me some clues. Thanks in advance.
Metadata
Metadata
Assignees
Labels
Status: Up for grabsIssues that are ready to be worked on by anyoneIssues that are ready to be worked on by anyoneType: SupportAny questions, information, or general needs around the SDK or GitHub APIsAny questions, information, or general needs around the SDK or GitHub APIsreleased