@envelop/opentelemetry
Version:
This plugins integrates [Open Telemetry](https://opentelemetry.io/) tracing with your GraphQL execution. It also collects GraphQL execution errors and reports it as Exceptions.
30 lines (29 loc) • 623 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.hasInlineArgument = hasInlineArgument;
const graphql_1 = require("graphql");
function hasInlineArgument(doc) {
let seen = false;
const leave = () => {
seen = true;
return graphql_1.BREAK;
};
(0, graphql_1.visit)(doc, {
StringValue: {
leave,
},
BooleanValue: {
leave,
},
FloatValue: {
leave,
},
EnumValue: {
leave,
},
IntValue: {
leave,
},
});
return seen;
}
;