From a6cd5f4d85df90190839c20dee3b9a26c9194756 Mon Sep 17 00:00:00 2001 From: Ben Newman Date: Thu, 7 Oct 2021 14:57:45 -0400 Subject: [PATCH] Update default value of canonizeResults option after PR #8822. --- docs/source/api/cache/InMemoryCache.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/api/cache/InMemoryCache.mdx b/docs/source/api/cache/InMemoryCache.mdx index ca252e6aae2..3688227d63a 100644 --- a/docs/source/api/cache/InMemoryCache.mdx +++ b/docs/source/api/cache/InMemoryCache.mdx @@ -140,7 +140,7 @@ By specifying the ID of another cached object, you can query arbitrary cached da If `true`, result objects read from the cache will be _canonized_, which means deeply-equal objects will also be `===` (literally the same object), allowing much more efficient comparison of past/present results. -The default value is `true`. +The default value is `false`. @@ -424,7 +424,7 @@ A map of any GraphQL variable names and values required by `fragment`. If `true`, result objects read from the cache will be _canonized_, which means deeply-equal objects will also be `===` (literally the same object), allowing much more efficient comparison of past/present results. -The default value is `true`. +The default value is `false`.