Skip to content
Compare
Choose a tag to compare
@shopify-github-actions-access shopify-github-actions-access released this 20 Feb 17:45
· 56 commits to main since this release
b65baa5

Minor Changes

  • 4603b69: Make fetch's keepalive configurable when making requests

    Example:

    const shopQuery = `
      query ShopQuery {
        shop {
          name
          id
        }
      }
    `;
    
    const {data, errors, extensions} = await client.request(shopQuery, {
      keepalive: true,
    });