Class: SolidusGraphqlApi::Queries::OptionType::OptionValuesQuery

Inherits:
Object
  • Object
show all
Defined in:
lib/solidus_graphql_api/queries/option_type/option_values_query.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(option_type:) ⇒ OptionValuesQuery

Returns a new instance of OptionValuesQuery.



9
10
11
# File 'lib/solidus_graphql_api/queries/option_type/option_values_query.rb', line 9

def initialize(option_type:)
  @option_type = option_type
end

Instance Attribute Details

#option_typeObject (readonly)

Returns the value of attribute option_type.



7
8
9
# File 'lib/solidus_graphql_api/queries/option_type/option_values_query.rb', line 7

def option_type
  @option_type
end

Instance Method Details

#callObject



13
14
15
# File 'lib/solidus_graphql_api/queries/option_type/option_values_query.rb', line 13

def call
  SolidusGraphqlApi::BatchLoader.for(option_type, :option_values)
end