@graphql-mesh/serve-runtime
Version:
36 lines (35 loc) • 1.47 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.useSubgraphExecuteDebug = useSubgraphExecuteDebug;
const graphql_yoga_1 = require("graphql-yoga");
const transport_common_1 = require("@graphql-mesh/transport-common");
function useSubgraphExecuteDebug(opts) {
return {
onSubgraphExecute({ executionRequest, logger = opts.logger }) {
if (executionRequest) {
logger.debug(`subgraph-execute`, () => JSON.stringify({
query: executionRequest.document && (0, transport_common_1.defaultPrintFn)(executionRequest.document),
variables: executionRequest.variables,
}, null, ' '));
}
return function onSubgraphExecuteDone({ result }) {
if ((0, graphql_yoga_1.isAsyncIterable)(result)) {
return {
onNext(value) {
logger.debug(`subgraph-response-next`, value);
},
onEnd() {
logger.debug(`subgraph-response-end`);
},
};
}
if (result) {
logger.debug(`subgraph-response`, JSON.stringify({
data: result.data,
errors: result.errors,
}, null, ' '));
}
};
},
};
}
;