我想只返回查询中的某些字段。
例如:
ShopifyAPI::Metafield.find(:all,:params=>{:resource => "products"},:fields=>['value'])
我只想从元字段对象中返回值字段
答案 0 :(得分:0)
你走近了。您忘记实际提供资源的ID。在您的情况下,由于您要查找分配给产品的元字段的所有值,因此您需要提供产品ID。
ShopifyAPI::Metafield.all(params: {resource: 'products', resource_id: 149523945, fields: 'value'})
=> [
#<ShopifyAPI::Metafield:0x007f80041f3958 @attributes={"value"=>"4999"}, @prefix_options={:resource=>"products", :resource_id=>149523945}, @persisted=true>,
#<ShopifyAPI::Metafield:0x007f80041f36b0 @attributes={"value"=>"Céà"}, @prefix_options={:resource=>"products", :resource_id=>149523945}, @persisted=true>,
#<ShopifyAPI::Metafield:0x007f80041f3408 @attributes={"value"=>"Cíao"}, @prefix_options={:resource=>"products", :resource_id=>149523945}, @persisted=true>,
#<ShopifyAPI::Metafield:0x007f80041f3160 @attributes={"value"=>"1"}, @prefix_options={:resource=>"products", :resource_id=>149523945}, @persisted=true>
]