class Datadog::Tracing::Contrib::GraphQL::Integration
Description of GraphQL integration
def self.compatible?
def self.compatible? super && version >= MINIMUM_VERSION end
def self.loaded?
def self.loaded? !defined?(::GraphQL).nil? \ && !defined?(::GraphQL::Tracing::DataDogTracing).nil? end
def self.version
def self.version Gem.loaded_specs['graphql'] && Gem.loaded_specs['graphql'].version end
def new_configuration
def new_configuration Configuration::Settings.new end
def patcher
def patcher Patcher end