Class: EPlat::Product::Image

Inherits:
Base
  • Object
show all
Defined in:
lib/e_plat/resource/product/image.rb

Constant Summary

Constants included from Concerns::GraphQLable

Concerns::GraphQLable::FILTER_ARGS, Concerns::GraphQLable::QUERY_ARG_ARGS

Instance Attribute Summary

Attributes inherited from Base

#mapped_attributes, #mapping

Attributes included from Concerns::Aliases

#type_coercer

Instance Method Summary collapse

Methods inherited from Base

cached_shopify_webhook?, client, #client, exclude_from_json, #formatted_id, #graphql_input, #headers, #include_root_in_json, inherited, #initialize, initialize_singleton!, #mapped?, #native_keys, platform_specific_class?, prefix=, #read_only?

Methods included from Countable

#count

Methods included from Concerns::GraphQLable

#graphql_mutation_string, #mutate_graphql, #remove_mutation_root_from

Methods included from Concerns::Aliases

#add_aliases!

Methods included from Concerns::FullJson

#as_full_json, #to_full_json

Methods included from Concerns::OverwriteRequestMethods

#collection_path, #element_path, included

Methods included from Concerns::OverwriteInstanceMethods

#as_eplat_json, #as_json, #create, #create_resource_for, #to_eplat_json, #to_json, #update

Constructor Details

This class inherits a constructor from EPlat::Base

Instance Method Details

#saveObject



20
21
22
23
# File 'lib/e_plat/resource/product/image.rb', line 20

def save
	prefix_options[:product] ||= product.id
	super
end

#variant_idsObject



25
26
27
# File 'lib/e_plat/resource/product/image.rb', line 25

def variant_ids
	product&.variants&.map(&:id) || []
end

#variant_ids=(ids) ⇒ Object

Raises:



29
30
31
# File 'lib/e_plat/resource/product/image.rb', line 29

def variant_ids=(ids)
	raise EPlat::Error.new("EPlat doesn't support setting variant_ids on images")
end