class GraphQL::Query::Context::ScopedContext

def key?(key)

def key?(key)
  if @all_keys && @all_keys.include?(key)
    each_present_path_ctx do |path_ctx|
      if path_ctx.key?(key)
        return true
      end
    end
  end
  false
end