@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.
27 lines (26 loc) • 483 B
JavaScript
import { BREAK, visit } from 'graphql';
export function hasInlineArgument(doc) {
let seen = false;
const leave = () => {
seen = true;
return BREAK;
};
visit(doc, {
StringValue: {
leave,
},
BooleanValue: {
leave,
},
FloatValue: {
leave,
},
EnumValue: {
leave,
},
IntValue: {
leave,
},
});
return seen;
}