2.7.1 • Published 2 days ago

@iwci/shopify-tools v2.7.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 days ago

Shopify tools

This library adds a variety of utilities to simpliy usage of some shopify APIs.

Features

Admin GraphQL API client

Shopify tools can replace the @shopify/shopify-api default graphql client. The client is basically a port of the hydrogen's storefront client, but for the admin api. It offers more flexibility and add the possibility to use a cache, if available.

You can create a new client like this:

import { AdminApiClient } from '@iwci/shopify-tools';
import { LATEST_API_VERSION } from '@shopify/shopify-api';

const client = AdminApiClient({
  storeDomain: `https://exampleshop.myshopify.com`,
  adminApiSecret: "admin api access token",
  adminApiVersion: LATEST_API_VERSION,
  cache: typeof caches !== 'undefined' ? await caches.open(session.shop) : undefined,
});
}

Caching:

If you are running in an environment that supports cache (like Cloudflare Workers), are really want to cache (using some K/V storage), you can use a cache like this:

const cache = typeof caches !== 'undefined' ? await caches.open(session.shop) : undefined;

const client = AdminApiClient({
  // ...
  cache,
});
}

Using @shopify/shopify-api Session:

If you already have a session from @shopify/shopify-api you can easily create a client using the getClient() function.

const client = await getClient(session)

Bulk operations

Query batching

Webhook wrapper

2.7.1

2 days ago

2.7.1-1

19 days ago

2.6.0-0

22 days ago

2.7.1-0

22 days ago

2.2.0

1 month ago

2.4.0

1 month ago

2.3.0

1 month ago

2.5.0

1 month ago

2.0.0

2 months ago

2.1.2

2 months ago

2.1.1

2 months ago

2.1.4

2 months ago

2.1.3

2 months ago

2.1.0

2 months ago

2.0.0-pre.0

2 months ago

1.7.1

4 months ago

1.7.0

4 months ago

1.7.0-dev.1

4 months ago

1.7.0-dev.0

4 months ago

1.6.5

4 months ago

1.7.0-dev.6

4 months ago

1.7.0-dev.5

4 months ago

1.7.0-dev.4

4 months ago

1.7.0-dev.3

4 months ago

1.7.0-dev.2

4 months ago

1.6.4

5 months ago

1.6.3

5 months ago

1.6.2

5 months ago

1.6.1

5 months ago

1.6.0

6 months ago

1.5.6

6 months ago

1.5.5

6 months ago

1.5.4

6 months ago

1.5.3

6 months ago

1.5.2

6 months ago

1.5.1

6 months ago

1.5.0

6 months ago

1.4.1

6 months ago

1.4.0

6 months ago

1.3.0

7 months ago

1.2.0

7 months ago

1.1.0

7 months ago

1.0.5

7 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago

0.0.1

9 months ago

0.0.1-dev.11

9 months ago

0.0.1-dev.10

9 months ago

0.0.1-dev.9

9 months ago

0.0.1-dev.8

9 months ago

0.0.1-dev.7

9 months ago

0.0.1-dev.6

9 months ago

0.0.1-dev.5

9 months ago

0.0.1-dev.4

9 months ago

0.0.1-dev.3

9 months ago

0.0.1-dev.2

9 months ago

0.0.1-dev.1

9 months ago