Sha256: ebffa31494290f7aa266fa430f55113a21326c21b2ae10d43fbb159d972adbd6
Contents?: true
Size: 377 Bytes
Versions: 4
Compression:
Stored size: 377 Bytes
Contents
# frozen_string_literal: true module SolidusGraphqlApi module Queries module OptionType class OptionValuesQuery attr_reader :option_type def initialize(option_type:) @option_type = option_type end def call SolidusGraphqlApi::BatchLoader.for(option_type, :option_values) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems