diff --git a/src/smart-query.js b/src/smart-query.js index b9ff8e5..3b21ce7 100644 --- a/src/smart-query.js +++ b/src/smart-query.js @@ -87,10 +87,12 @@ export default class SmartQuery extends SmartApollo { }) } - const currentResult = this.maySetLoading() + if (this.options.fetchPolicy !== "no-cache") { + const currentResult = this.maySetLoading() - if (!currentResult.loading) { - this.nextResult(currentResult) + if (!currentResult.loading) { + this.nextResult(currentResult) + } } super.executeApollo(variables)