Class: SolidusGraphqlApi::Queries::Taxonomy::TaxonsQuery
- Inherits:
-
Object
- Object
- SolidusGraphqlApi::Queries::Taxonomy::TaxonsQuery
- Defined in:
- lib/solidus_graphql_api/queries/taxonomy/taxons_query.rb
Instance Attribute Summary collapse
-
#taxonomy ⇒ Object
readonly
Returns the value of attribute taxonomy.
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(taxonomy:) ⇒ TaxonsQuery
constructor
A new instance of TaxonsQuery.
Constructor Details
#initialize(taxonomy:) ⇒ TaxonsQuery
Returns a new instance of TaxonsQuery.
9 10 11 |
# File 'lib/solidus_graphql_api/queries/taxonomy/taxons_query.rb', line 9 def initialize(taxonomy:) @taxonomy = taxonomy end |
Instance Attribute Details
#taxonomy ⇒ Object (readonly)
Returns the value of attribute taxonomy.
7 8 9 |
# File 'lib/solidus_graphql_api/queries/taxonomy/taxons_query.rb', line 7 def taxonomy @taxonomy end |
Instance Method Details
#call ⇒ Object
13 14 15 |
# File 'lib/solidus_graphql_api/queries/taxonomy/taxons_query.rb', line 13 def call SolidusGraphqlApi::BatchLoader.for(taxonomy, :taxons, scope: Spree::Taxon.order(:id)) end |