Shopify-api-node
Shopify-api-node copied to clipboard
Node Shopify connector sponsored by MONEI
Hi, Please add a changelog or release notes to help the users understand the (breaking) changes in new versions. Thanks!
While I know we can easily set the API version, the defult behaviour is to use the oldest supported API version. Trouble with this is that Shopify is now throwing...
As we know one can set `autoLimit` to avoid hiting rate limit. Problem is that ( from documentation ) ```When using an object, the calls property and the interval property...
When doing a mutation `shopify.graphql(mutationQuery)` where the query is a mutation such as: ``` mutation { customerCreate( input: { ... } ) { customer { id displayName } userErrors {...
According to the shopify documentation we are able to query a list by orderID: GET /admin/api/2020-10/orders/450789469/events.json docs: https://shopify.dev/docs/admin-api/rest/reference/events/event?api%5Bversion%5D=2020-10 However the list function does not support providing an orderID. list([params]) I...
This is partly an issue w/ Shopify's documentation but here's a scenario: ``` shopify.smartCollection.order(id, { products: [...large product id array...] } ``` If the # of ids is large enough...
I was trying a simple mutation the other day to update a collections descriptionHtml. I could only get it to work with fetch. I noticed that body assumes query. Could...
I'm trying to retrieve the translatable content of a product like this: ``` const query = ` { translatableResource(resourceId: "${admin_graphql_api_id}") { translatableContent { digest key locale value } } }...
While writing some tests for our own usage of `shopif-api-node`, I noticed that retries on `retryableStatusCodes` were not respecting `got`'s retry limit. According to `got`'s documentation: > This function is...
`Metafield.valueType` or value_type has been removed, please replace all REST "value_type" or graphql valueType with "type" 1 oct shopify deadline.