Sha256: 20f307f85907cce107ebd0574b1757aebc61359d25a176a04088241e90cff74e
Contents?: true
Size: 341 Bytes
Versions: 4
Compression:
Stored size: 341 Bytes
Contents
# frozen_string_literal: true module SolidusGraphqlApi module Queries module Country class StatesQuery attr_reader :country def initialize(country:) @country = country end def call SolidusGraphqlApi::BatchLoader.for(country, :states) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems