class Stardust::GraphQL::Configuration

Public Instance Methods

around_execute(&block) click to toggle source
# File lib/stardust/graphql/configuration.rb, line 13
def around_execute(&block)
  if block_given?
    @around_execute = block
  else
    @around_execute
  end
end
setup_context(&block) click to toggle source
# File lib/stardust/graphql/configuration.rb, line 5
def setup_context(&block)
  if block_given?
    @setup_context = block
  else
    @setup_context
  end
end