Sha256: 238158fcdc7645c7c5ffaba5720e2878c4783a823d25dbaeda242494691dff1f
Contents?: true
Size: 546 Bytes
Versions: 4
Compression:
Stored size: 546 Bytes
Contents
# frozen_string_literal: true module SolidusGraphqlApi module Types class ProductProperty < Base::RelayNode description 'Product Property.' field :created_at, GraphQL::Types::ISO8601DateTime, null: true field :position, Int, null: false field :property, Property, null: true field :updated_at, GraphQL::Types::ISO8601DateTime, null: true field :value, String, null: true def property Queries::ProductProperty::PropertyQuery.new(product_property: object).call end end end end
Version data entries
4 entries across 4 versions & 1 rubygems