We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f72858 commit 097c199Copy full SHA for 097c199
lib/yabeda/graphql.rb
@@ -1,6 +1,6 @@
1
require "yabeda"
2
require "yabeda/graphql/version"
3
-require "yabeda/graphql/tracing"
+require "yabeda/graphql/yabeda_tracing"
4
require "yabeda/graphql/instrumentation"
5
6
module Yabeda
@@ -31,7 +31,7 @@ class Error < StandardError; end
31
32
def self.use(schema)
33
schema.instrument(:query, Instrumentation.new)
34
- schema.use Tracing, trace_scalars: true
+ schema.use YabedaTracing, trace_scalars: true
35
end
36
37
lib/yabeda/graphql/tracing.rb renamed to lib/yabeda/graphql/yabeda_tracing.rb
@@ -2,7 +2,7 @@
module GraphQL
- class Tracing < ::GraphQL::Tracing::PlatformTracing
+ class YabedaTracing < ::GraphQL::Tracing::PlatformTracing
7
self.platform_keys = {
8
'lex' => "graphql.lex",
0 commit comments