如何从shopify gem api查询中获取特定字段

时间:2014-01-08 02:13:09

标签: ruby shopify

我想只返回查询中的某些字段。

例如:

ShopifyAPI::Metafield.find(:all,:params=>{:resource => "products"},:fields=>['value'])

我只想从元字段对象中返回值字段

1 个答案:

答案 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>
]