Class: Io::Flow::V0::Models::GraphqlRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ GraphqlRequest

Returns a new instance of GraphqlRequest.



41151
41152
41153
41154
41155
41156
41157
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41151

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:query], 'GraphqlRequest')
  @query = HttpClient::Preconditions.assert_class('query', opts.delete(:query), String)
  @operation_name = (x = opts.delete(:operation_name); x.nil? ? nil : HttpClient::Preconditions.assert_class('operation_name', x, String))
  @variables = (x = opts.delete(:variables); x.nil? ? nil : HttpClient::Preconditions.assert_class('variables', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('variables', d[1], String); h })
end

Instance Attribute Details

#operation_nameObject (readonly)

Returns the value of attribute operation_name.



41149
41150
41151
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41149

def operation_name
  @operation_name
end

#queryObject (readonly)

Returns the value of attribute query.



41149
41150
41151
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41149

def query
  @query
end

#variablesObject (readonly)

Returns the value of attribute variables.



41149
41150
41151
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41149

def variables
  @variables
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



41163
41164
41165
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41163

def copy(incoming={})
  GraphqlRequest.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



41167
41168
41169
41170
41171
41172
41173
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41167

def to_hash
  {
    :query => query,
    :operation_name => operation_name,
    :variables => variables.nil? ? nil : variables
  }
end

#to_jsonObject



41159
41160
41161
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41159

def to_json
  JSON.dump(to_hash)
end