@graphql-mesh/transport-soap 0.10.1 → 0.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/executor.js +1 -1
- package/esm/executor.js +1 -1
- package/package.json +1 -1
package/cjs/executor.js
CHANGED
|
@@ -144,7 +144,7 @@ Falling back to 'http://www.w3.org/2003/05/soap-envelope' as SOAP Namespace.`);
|
|
|
144
144
|
return (0, utils_2.createGraphQLError)(`Upstream HTTP Error: ${response.status}`, {
|
|
145
145
|
extensions: {
|
|
146
146
|
code: 'DOWNSTREAM_SERVICE_ERROR',
|
|
147
|
-
|
|
147
|
+
serviceName: soapAnnotations.subgraph,
|
|
148
148
|
request: {
|
|
149
149
|
url: soapAnnotations.endpoint,
|
|
150
150
|
method: 'POST',
|
package/esm/executor.js
CHANGED
|
@@ -141,7 +141,7 @@ Falling back to 'http://www.w3.org/2003/05/soap-envelope' as SOAP Namespace.`);
|
|
|
141
141
|
return createGraphQLError(`Upstream HTTP Error: ${response.status}`, {
|
|
142
142
|
extensions: {
|
|
143
143
|
code: 'DOWNSTREAM_SERVICE_ERROR',
|
|
144
|
-
|
|
144
|
+
serviceName: soapAnnotations.subgraph,
|
|
145
145
|
request: {
|
|
146
146
|
url: soapAnnotations.endpoint,
|
|
147
147
|
method: 'POST',
|