Sha256: c7e285bb8c4e2018ac7c3b253db1a0f9d49f335c7176f2aa8d730d87fd3fd1ed
Contents?: true
Size: 341 Bytes
Versions: 4
Compression:
Stored size: 341 Bytes
Contents
# frozen_string_literal: true module SolidusGraphqlApi module Queries module Variant class PricesQuery attr_reader :variant def initialize(variant:) @variant = variant end def call SolidusGraphqlApi::BatchLoader.for(variant, :prices) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems