diff --git a/packages/apollo-client/src/core/ObservableQuery.ts b/packages/apollo-client/src/core/ObservableQuery.ts index 3e1e2f0b263..3df67f34a35 100644 --- a/packages/apollo-client/src/core/ObservableQuery.ts +++ b/packages/apollo-client/src/core/ObservableQuery.ts @@ -153,7 +153,7 @@ export class ObservableQuery< * Return the result of the query from the local cache as well as some fetching status * `loading` and `networkStatus` allow to know if a request is in flight * `partial` lets you know if the result from the local cache is complete or partial - * @return {result: Object, loading: boolean, networkStatus: number, partial: boolean} + * @return {data: Object, error: ApolloError, loading: boolean, networkStatus: number, partial: boolean} */ public currentResult(): ApolloCurrentResult { if (this.isTornDown) {