v2.0.0
2.0.0 (2020-10-20)
BREAKING CHANGES
- This removes support for the GraphQL Extension interface and moves from a class to a function interface
Migration:
- extensions: [
- new OpentracingExtension({
- server: serverTracer,
- local: localTracer,
- })
- ]
+ plugins: [OpentracingExtension({
+ server: serverTracer,
+ local: localTracer,
+ })]