class GraphQL::Groups::QueryResult

Attributes

aggregate[R]
key[R]
result_hash[R]

Public Class Methods

new(key, aggregate, result) click to toggle source
# File lib/graphql/groups/query_result.rb, line 10
def initialize(key, aggregate, result)
  @key = Utils.wrap(key)
  @aggregate = Utils.wrap(aggregate)
  @result_hash = result
end