0.0.8
This release adds the ability to append the GraphQL context and variables onto the trace attributes.
You can do this by setting either or both options:
new GraphQLOTELContext({
includeContext: true,
includeVariables: true,
});
You will then see the JSON string of variables
and context
in your trace attributes.
Commits