We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d6823b4 + d433956 commit bffc238Copy full SHA for bffc238
package.json
@@ -1,5 +1,5 @@
1
{
2
- "version": "0.27.1",
+ "version": "0.27.2",
3
"license": "MIT",
4
"main": "dist/index.js",
5
"typings": "dist/index.d.ts",
src/modules/commerce/cart/index.ts
@@ -30,6 +30,8 @@ export class Cart {
30
public async getCart(): Promise<CartData> {
31
const response = await this.client.query({
32
query: GET_CART_QUERY,
33
+ fetchPolicy: 'no-cache',
34
+ partialRefetch: true,
35
});
36
37
return response.data;
0 commit comments