diff --git a/docs/source/data/refetching.mdx b/docs/source/data/refetching.mdx index 0023146ef9c..93308560d13 100644 --- a/docs/source/data/refetching.mdx +++ b/docs/source/data/refetching.mdx @@ -256,7 +256,7 @@ await client.refetchQueries({ // Called once for every active query, allowing dynamic filtering: onQueryUpdated(observableQuery) { - return !shouldIngoreQuery(observableQuery); + return !shouldIgnoreQuery(observableQuery); }, }); ```