Sha256: 5a1a3da6026186b84294d0028c1f5e0fd2121b0c77ccbcb9c8b580e505dcfb44

Contents?: true

Size: 1.62 KB

Versions: 25

Compression:

Stored size: 1.62 KB

Contents

# frozen_string_literal: true

module GraphQL
  class Query
    # A result from {Schema#execute}.
    # It provides the requested data and
    # access to the {Query} and {Query::Context}.
    class Result
      extend GraphQL::Delegate

      def initialize(query:, values:)
        @query = query
        @to_h = values
      end

      # @return [GraphQL::Query] The query that was executed
      attr_reader :query

      # @return [Hash] The resulting hash of "data" and/or "errors"
      attr_reader :to_h

      def_delegators :@query, :context, :mutation?, :query?, :subscription?

      def_delegators :@to_h, :[], :keys, :values, :to_json, :as_json

      # Delegate any hash-like method to the underlying hash.
      def method_missing(method_name, *args, &block)
        if @to_h.respond_to?(method_name)
          @to_h.public_send(method_name, *args, &block)
        else
          super
        end
      end

      def respond_to_missing?(method_name, include_private = false)
        @to_h.respond_to?(method_name) || super
      end

      def inspect
        "#<GraphQL::Query::Result @query=... @to_h=#{@to_h} >"
      end

      # A result is equal to another object when:
      #
      # - The other object is a Hash whose value matches `result.to_h`
      # - The other object is a Result whose value matches `result.to_h`
      #
      # (The query is ignored for comparing result equality.)
      #
      # @return [Boolean]
      def ==(other)
        case other
        when Hash
          @to_h == other
        when Query::Result
          @to_h == other.to_h
        else
          super
        end
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
graphql-1.8.0.pre10 lib/graphql/query/result.rb
graphql-1.7.14 lib/graphql/query/result.rb
graphql-1.8.0.pre9 lib/graphql/query/result.rb
graphql-1.8.0.pre8 lib/graphql/query/result.rb
graphql-1.7.13 lib/graphql/query/result.rb
graphql-1.8.0.pre7 lib/graphql/query/result.rb
graphql-1.7.12 lib/graphql/query/result.rb
graphql-1.7.11 lib/graphql/query/result.rb
graphql-1.7.10 lib/graphql/query/result.rb
graphql-1.8.0.pre6 lib/graphql/query/result.rb
graphql-1.8.0.pre5 lib/graphql/query/result.rb
graphql-1.7.9 lib/graphql/query/result.rb
graphql-1.8.0.pre4 lib/graphql/query/result.rb
graphql-1.8.0.pre3 lib/graphql/query/result.rb
graphql-1.7.8 lib/graphql/query/result.rb
graphql-1.8.0.pre2 lib/graphql/query/result.rb
graphql-1.7.7 lib/graphql/query/result.rb
graphql-1.8.0.pre1 lib/graphql/query/result.rb
graphql-1.7.6 lib/graphql/query/result.rb
graphql-1.7.5 lib/graphql/query/result.rb