Sha256: 82afe2bf96baae1e997ab2ebe0f3a10109fda146139f8d69c8f35e2804bfcc76
Contents?: true
Size: 393 Bytes
Versions: 3
Compression:
Stored size: 393 Bytes
Contents
# frozen_string_literal: true module SolidusGraphqlApi module Queries module ShippingRate class ShippingMethodQuery attr_reader :shipping_rate def initialize(shipping_rate:) @shipping_rate = shipping_rate end def call SolidusGraphqlApi::BatchLoader.for(shipping_rate, :shipping_method) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems