mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
🐛 Fix operationName bug in GraphQL-Node
This commit is contained in:
parent
ffeb2f8b62
commit
a1da8425e4
|
@ -246,7 +246,7 @@ export class GraphQL implements INodeType {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (requestOptions.body.operationName === '') {
|
if (requestOptions.body.operationName === '') {
|
||||||
requestOptions.body.operation = null;
|
requestOptions.body.operationName = null;
|
||||||
}
|
}
|
||||||
requestOptions.json = true;
|
requestOptions.json = true;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue