slince / shopify-api-php

:rocket: Shopify API Client for PHP
MIT License
128 stars 47 forks source link

Metafields #18

Closed KDederichs closed 4 years ago

KDederichs commented 5 years ago

Hey,

maybe I'm just not seeing it but am I able to receive an manipulate metafields with your API?

According to https://help.shopify.com/en/api/reference/products/product_variant Variants have a Metafield

There also seems to be a Metafields endpoint https://help.shopify.com/en/api/reference/metafield but no Metafield manager.

Best regards

slince commented 5 years ago

hi, this package does not contain the full shopify resource manager. Some resources are rarely used; you can use a simple way get/post/put/delete to manipulate "metafield"

$metafields = $client->get('metafields', ['since_id' => xxxx])
$metafields = $client->get('products/123xxx/metafields')

of course. If you have free time, you can also submit a pr to improve this 😄 .