diff --git a/package.json b/package.json index d10a3b6b..872820ea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "version": "0.0.64", + "version": "0.0.65", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/src/modules/app/index.ts b/src/modules/app/index.ts index 7f9958f6..3bda7409 100644 --- a/src/modules/app/index.ts +++ b/src/modules/app/index.ts @@ -119,14 +119,17 @@ export class App { mutation: CREATE_APP, variables: { input - } + }, + fetchPolicy: 'network-only', }) return response.data } public async getAppsWithAccess(): Promise { const response = await this.client.query({ - query: GET_APPS_WITH_ACCESS + query: GET_APPS_WITH_ACCESS, + fetchPolicy: 'network-only', + partialRefetch: true, }) return response.data }