@apollo/client 3.13.9-rc.0 → 3.13.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2102) hide show
  1. package/.changeset/README.md +8 -0
  2. package/.changeset/config.json +14 -0
  3. package/CHANGELOG.md +2 -1790
  4. package/README.md +80 -31
  5. package/apollo-client.cjs +9478 -0
  6. package/apollo-client.cjs.map +1 -0
  7. package/apollo-client.min.cjs +1 -0
  8. package/cache/cache.cjs +2691 -0
  9. package/cache/cache.cjs.map +1 -0
  10. package/cache/cache.cjs.native.js +2691 -0
  11. package/cache/cache.d.cts +1 -0
  12. package/cache/core/cache.d.ts +41 -55
  13. package/cache/core/cache.js +91 -126
  14. package/cache/core/cache.js.map +1 -1
  15. package/cache/core/types/Cache.d.ts +20 -13
  16. package/cache/core/types/Cache.js +1 -1
  17. package/cache/core/types/Cache.js.map +1 -1
  18. package/cache/core/types/DataProxy.d.ts +28 -18
  19. package/cache/core/types/DataProxy.js +1 -1
  20. package/cache/core/types/DataProxy.js.map +1 -1
  21. package/cache/core/types/common.d.ts +2 -2
  22. package/cache/core/types/common.js +21 -21
  23. package/cache/core/types/common.js.map +1 -1
  24. package/cache/index.d.ts +10 -9
  25. package/cache/index.js +6 -4
  26. package/cache/index.js.map +1 -1
  27. package/cache/inmemory/entityStore.d.ts +8 -9
  28. package/cache/inmemory/entityStore.js +277 -276
  29. package/cache/inmemory/entityStore.js.map +1 -1
  30. package/cache/inmemory/fixPolyfills.d.ts +1 -0
  31. package/cache/inmemory/fixPolyfills.js +10 -0
  32. package/cache/inmemory/fixPolyfills.js.map +1 -0
  33. package/cache/inmemory/fixPolyfills.native.d.ts +2 -0
  34. package/cache/inmemory/fixPolyfills.native.js +61 -0
  35. package/cache/inmemory/fixPolyfills.native.js.map +1 -0
  36. package/cache/inmemory/fragmentRegistry.d.ts +1 -1
  37. package/cache/inmemory/fragmentRegistry.js +66 -52
  38. package/cache/inmemory/fragmentRegistry.js.map +1 -1
  39. package/cache/inmemory/helpers.d.ts +14 -7
  40. package/cache/inmemory/helpers.js +35 -21
  41. package/cache/inmemory/helpers.js.map +1 -1
  42. package/cache/inmemory/inMemoryCache.d.ts +22 -23
  43. package/cache/inmemory/inMemoryCache.js +183 -154
  44. package/cache/inmemory/inMemoryCache.js.map +1 -1
  45. package/cache/inmemory/key-extractor.d.ts +2 -2
  46. package/cache/inmemory/key-extractor.js +49 -42
  47. package/cache/inmemory/key-extractor.js.map +1 -1
  48. package/cache/inmemory/object-canon.d.ts +12 -0
  49. package/cache/inmemory/object-canon.js +181 -0
  50. package/cache/inmemory/object-canon.js.map +1 -0
  51. package/cache/inmemory/policies.d.ts +7 -8
  52. package/cache/inmemory/policies.js +195 -191
  53. package/cache/inmemory/policies.js.map +1 -1
  54. package/cache/inmemory/reactiveVars.d.ts +9 -10
  55. package/cache/inmemory/reactiveVars.js +17 -17
  56. package/cache/inmemory/reactiveVars.js.map +1 -1
  57. package/cache/inmemory/readFromStore.d.ts +19 -6
  58. package/cache/inmemory/readFromStore.js +154 -113
  59. package/cache/inmemory/readFromStore.js.map +1 -1
  60. package/cache/inmemory/types.d.ts +23 -8
  61. package/cache/inmemory/types.js +1 -1
  62. package/cache/inmemory/types.js.map +1 -1
  63. package/cache/inmemory/writeToStore.d.ts +7 -8
  64. package/cache/inmemory/writeToStore.js +164 -206
  65. package/cache/inmemory/writeToStore.js.map +1 -1
  66. package/cache/package.json +8 -0
  67. package/config/jest/areApolloErrorsEqual.d.ts +3 -0
  68. package/config/jest/areApolloErrorsEqual.js +23 -0
  69. package/config/jest/areApolloErrorsEqual.js.map +1 -0
  70. package/config/jest/areGraphQlErrorsEqual.d.ts +3 -0
  71. package/config/jest/areGraphQlErrorsEqual.js +7 -0
  72. package/config/jest/areGraphQlErrorsEqual.js.map +1 -0
  73. package/config/jest/setup.d.ts +3 -0
  74. package/config/jest/setup.js +36 -0
  75. package/config/jest/setup.js.map +1 -0
  76. package/core/ApolloClient.d.ts +84 -68
  77. package/core/ApolloClient.js +222 -278
  78. package/core/ApolloClient.js.map +1 -1
  79. package/core/LocalState.d.ts +65 -0
  80. package/core/LocalState.js +356 -0
  81. package/core/LocalState.js.map +1 -0
  82. package/core/ObservableQuery.d.ts +76 -310
  83. package/core/ObservableQuery.js +601 -977
  84. package/core/ObservableQuery.js.map +1 -1
  85. package/core/QueryInfo.d.ts +42 -56
  86. package/core/QueryInfo.js +235 -288
  87. package/core/QueryInfo.js.map +1 -1
  88. package/core/QueryManager.d.ts +77 -77
  89. package/core/QueryManager.js +855 -789
  90. package/core/QueryManager.js.map +1 -1
  91. package/core/core.cjs +2762 -0
  92. package/core/core.cjs.map +1 -0
  93. package/core/core.cjs.native.js +2762 -0
  94. package/core/core.d.cts +1 -0
  95. package/core/equalByQuery.d.ts +1 -1
  96. package/core/equalByQuery.js +19 -16
  97. package/core/equalByQuery.js.map +1 -1
  98. package/core/index.d.ts +20 -18
  99. package/core/index.js +15 -14
  100. package/core/index.js.map +1 -1
  101. package/core/networkStatus.d.ts +2 -8
  102. package/core/networkStatus.js +2 -8
  103. package/core/networkStatus.js.map +1 -1
  104. package/core/package.json +8 -0
  105. package/core/types.d.ts +36 -237
  106. package/core/types.js +1 -1
  107. package/core/types.js.map +1 -1
  108. package/core/watchQueryOptions.d.ts +373 -235
  109. package/core/watchQueryOptions.js +1 -1
  110. package/core/watchQueryOptions.js.map +1 -1
  111. package/dev/dev.cjs +628 -0
  112. package/dev/dev.cjs.map +1 -0
  113. package/dev/dev.cjs.native.js +628 -0
  114. package/dev/dev.d.cts +1 -0
  115. package/dev/index.d.ts +1 -1
  116. package/dev/index.js +1 -1
  117. package/dev/index.js.map +1 -1
  118. package/dev/loadDevMessages.d.ts +1 -1
  119. package/dev/loadDevMessages.js +1 -1
  120. package/dev/loadDevMessages.js.map +1 -1
  121. package/dev/loadErrorMessageHandler.d.ts +1 -1
  122. package/dev/loadErrorMessageHandler.js +14 -9
  123. package/dev/loadErrorMessageHandler.js.map +1 -1
  124. package/dev/loadErrorMessages.d.ts +1 -1
  125. package/dev/loadErrorMessages.js +1 -1
  126. package/dev/loadErrorMessages.js.map +1 -1
  127. package/dev/package.json +8 -0
  128. package/dev/setErrorMessageHandler.d.ts +1 -1
  129. package/dev/setErrorMessageHandler.js +3 -3
  130. package/dev/setErrorMessageHandler.js.map +1 -1
  131. package/errors/errors.cjs +55 -0
  132. package/errors/errors.cjs.map +1 -0
  133. package/errors/errors.cjs.native.js +55 -0
  134. package/errors/errors.d.cts +1 -0
  135. package/errors/index.d.ts +45 -11
  136. package/errors/index.js +52 -23
  137. package/errors/index.js.map +1 -1
  138. package/errors/package.json +8 -0
  139. package/index.d.ts +3 -0
  140. package/index.js +3 -0
  141. package/index.js.map +1 -0
  142. package/invariantErrorCodes.d.ts +1 -1
  143. package/invariantErrorCodes.js +351 -454
  144. package/invariantErrorCodes.js.map +1 -1
  145. package/link/batch/batch.cjs +159 -0
  146. package/link/batch/batch.cjs.map +1 -0
  147. package/link/batch/batch.cjs.native.js +159 -0
  148. package/link/batch/batch.d.cts +1 -0
  149. package/link/batch/batchLink.d.ts +4 -4
  150. package/link/batch/batchLink.js +23 -19
  151. package/link/batch/batchLink.js.map +1 -1
  152. package/link/batch/batching.d.ts +3 -3
  153. package/link/batch/batching.js +59 -63
  154. package/link/batch/batching.js.map +1 -1
  155. package/link/batch/index.d.ts +2 -3
  156. package/link/batch/index.js +2 -2
  157. package/link/batch/index.js.map +1 -1
  158. package/link/batch/package.json +8 -0
  159. package/link/batch-http/batch-http.cjs +161 -0
  160. package/link/batch-http/batch-http.cjs.map +1 -0
  161. package/link/batch-http/batch-http.cjs.native.js +161 -0
  162. package/link/batch-http/batch-http.d.cts +1 -0
  163. package/link/batch-http/batchHttpLink.d.ts +7 -12
  164. package/link/batch-http/batchHttpLink.js +116 -63
  165. package/link/batch-http/batchHttpLink.js.map +1 -1
  166. package/link/batch-http/index.d.ts +2 -2
  167. package/link/batch-http/index.js +2 -2
  168. package/link/batch-http/index.js.map +1 -1
  169. package/link/batch-http/package.json +8 -0
  170. package/link/context/context.cjs +38 -0
  171. package/link/context/context.cjs.map +1 -0
  172. package/link/context/context.cjs.native.js +38 -0
  173. package/link/context/context.d.cts +1 -0
  174. package/link/context/index.d.ts +6 -12
  175. package/link/context/index.js +29 -37
  176. package/link/context/index.js.map +1 -1
  177. package/link/context/package.json +8 -0
  178. package/link/core/ApolloLink.d.ts +16 -19
  179. package/link/core/ApolloLink.js +70 -71
  180. package/link/core/ApolloLink.js.map +1 -1
  181. package/link/core/concat.d.ts +1 -1
  182. package/link/core/concat.js +2 -2
  183. package/link/core/concat.js.map +1 -1
  184. package/link/core/core.cjs +115 -0
  185. package/link/core/core.cjs.map +1 -0
  186. package/link/core/core.cjs.native.js +115 -0
  187. package/link/core/core.d.cts +1 -0
  188. package/link/core/empty.d.ts +1 -1
  189. package/link/core/empty.js +2 -2
  190. package/link/core/empty.js.map +1 -1
  191. package/link/core/execute.d.ts +1 -1
  192. package/link/core/execute.js +2 -2
  193. package/link/core/execute.js.map +1 -1
  194. package/link/core/from.d.ts +1 -1
  195. package/link/core/from.js +2 -2
  196. package/link/core/from.js.map +1 -1
  197. package/link/core/index.d.ts +9 -0
  198. package/link/core/index.js +8 -0
  199. package/link/core/index.js.map +1 -0
  200. package/link/core/package.json +8 -0
  201. package/link/core/split.d.ts +1 -1
  202. package/link/core/split.js +2 -2
  203. package/link/core/split.js.map +1 -1
  204. package/link/core/types.d.ts +38 -16
  205. package/link/core/types.js +1 -1
  206. package/link/core/types.js.map +1 -1
  207. package/link/error/error.cjs +100 -0
  208. package/link/error/error.cjs.map +1 -0
  209. package/link/error/error.cjs.native.js +100 -0
  210. package/link/error/error.d.cts +1 -0
  211. package/link/error/index.d.ts +30 -20
  212. package/link/error/index.js +91 -75
  213. package/link/error/index.js.map +1 -1
  214. package/link/error/package.json +8 -0
  215. package/link/http/HttpLink.d.ts +5 -146
  216. package/link/http/HttpLink.js +14 -15
  217. package/link/http/HttpLink.js.map +1 -1
  218. package/link/http/checkFetcher.d.ts +1 -1
  219. package/link/http/checkFetcher.js +6 -4
  220. package/link/http/checkFetcher.js.map +1 -1
  221. package/link/http/createHttpLink.d.ts +4 -0
  222. package/link/http/createHttpLink.js +156 -0
  223. package/link/http/createHttpLink.js.map +1 -0
  224. package/link/http/createSignalIfSupported.d.ts +1 -1
  225. package/link/http/createSignalIfSupported.js +5 -5
  226. package/link/http/createSignalIfSupported.js.map +1 -1
  227. package/link/http/http.cjs +634 -0
  228. package/link/http/http.cjs.map +1 -0
  229. package/link/http/http.cjs.native.js +634 -0
  230. package/link/http/http.d.cts +1 -0
  231. package/link/http/index.d.ts +7 -4
  232. package/link/http/index.js +5 -4
  233. package/link/http/index.js.map +1 -1
  234. package/link/http/iterators/async.d.ts +6 -0
  235. package/link/http/iterators/async.js +18 -0
  236. package/link/http/iterators/async.js.map +1 -0
  237. package/link/http/iterators/nodeStream.d.ts +7 -0
  238. package/link/http/iterators/nodeStream.js +75 -0
  239. package/link/http/iterators/nodeStream.js.map +1 -0
  240. package/link/http/iterators/promise.d.ts +6 -0
  241. package/link/http/iterators/promise.js +32 -0
  242. package/link/http/iterators/promise.js.map +1 -0
  243. package/link/http/iterators/reader.d.ts +6 -0
  244. package/link/http/iterators/reader.js +19 -0
  245. package/link/http/iterators/reader.js.map +1 -0
  246. package/link/http/package.json +8 -0
  247. package/link/http/parseAndCheckHttpResponse.d.ts +11 -2
  248. package/link/http/parseAndCheckHttpResponse.js +170 -124
  249. package/link/http/parseAndCheckHttpResponse.js.map +1 -1
  250. package/link/http/responseIterator.d.ts +7 -0
  251. package/link/http/responseIterator.js +48 -0
  252. package/link/http/responseIterator.js.map +1 -0
  253. package/link/http/rewriteURIForGET.d.ts +3 -3
  254. package/link/http/rewriteURIForGET.js +13 -13
  255. package/link/http/rewriteURIForGET.js.map +1 -1
  256. package/link/http/selectHttpOptionsAndBody.d.ts +85 -11
  257. package/link/http/selectHttpOptionsAndBody.js +43 -44
  258. package/link/http/selectHttpOptionsAndBody.js.map +1 -1
  259. package/link/http/selectURI.d.ts +2 -2
  260. package/link/http/selectURI.js +4 -4
  261. package/link/http/selectURI.js.map +1 -1
  262. package/link/http/serializeFetchParameter.d.ts +2 -2
  263. package/link/http/serializeFetchParameter.js +5 -5
  264. package/link/http/serializeFetchParameter.js.map +1 -1
  265. package/link/persisted-queries/index.d.ts +22 -22
  266. package/link/persisted-queries/index.js +169 -173
  267. package/link/persisted-queries/index.js.map +1 -1
  268. package/link/persisted-queries/package.json +8 -0
  269. package/link/persisted-queries/persisted-queries.cjs +194 -0
  270. package/link/persisted-queries/persisted-queries.cjs.map +1 -0
  271. package/link/persisted-queries/persisted-queries.cjs.native.js +194 -0
  272. package/link/persisted-queries/persisted-queries.d.cts +1 -0
  273. package/link/remove-typename/index.d.ts +2 -2
  274. package/link/remove-typename/index.js +2 -2
  275. package/link/remove-typename/index.js.map +1 -1
  276. package/link/remove-typename/package.json +8 -0
  277. package/link/remove-typename/remove-typename.cjs +100 -0
  278. package/link/remove-typename/remove-typename.cjs.map +1 -0
  279. package/link/remove-typename/remove-typename.cjs.native.js +100 -0
  280. package/link/remove-typename/remove-typename.d.cts +1 -0
  281. package/link/remove-typename/removeTypenameFromVariables.d.ts +11 -10
  282. package/link/remove-typename/removeTypenameFromVariables.js +44 -54
  283. package/link/remove-typename/removeTypenameFromVariables.js.map +1 -1
  284. package/link/retry/delayFunction.d.ts +2 -2
  285. package/link/retry/delayFunction.js +4 -4
  286. package/link/retry/delayFunction.js.map +1 -1
  287. package/link/retry/index.d.ts +2 -2
  288. package/link/retry/index.js +2 -2
  289. package/link/retry/index.js.map +1 -1
  290. package/link/retry/package.json +8 -0
  291. package/link/retry/retry.cjs +123 -0
  292. package/link/retry/retry.cjs.map +1 -0
  293. package/link/retry/retry.cjs.native.js +123 -0
  294. package/link/retry/retry.d.cts +1 -0
  295. package/link/retry/retryFunction.d.ts +2 -2
  296. package/link/retry/retryFunction.js +2 -2
  297. package/link/retry/retryFunction.js.map +1 -1
  298. package/link/retry/retryLink.d.ts +4 -4
  299. package/link/retry/retryLink.js +65 -52
  300. package/link/retry/retryLink.js.map +1 -1
  301. package/link/schema/index.d.ts +4 -4
  302. package/link/schema/index.js +33 -29
  303. package/link/schema/index.js.map +1 -1
  304. package/link/schema/package.json +8 -0
  305. package/link/schema/schema.cjs +61 -0
  306. package/link/schema/schema.cjs.map +1 -0
  307. package/link/schema/schema.cjs.native.js +61 -0
  308. package/link/schema/schema.d.cts +1 -0
  309. package/link/subscriptions/index.d.ts +4 -4
  310. package/link/subscriptions/index.js +27 -22
  311. package/link/subscriptions/index.js.map +1 -1
  312. package/link/subscriptions/package.json +8 -0
  313. package/link/subscriptions/subscriptions.cjs +50 -0
  314. package/link/subscriptions/subscriptions.cjs.map +1 -0
  315. package/link/subscriptions/subscriptions.cjs.native.js +50 -0
  316. package/link/subscriptions/subscriptions.d.cts +1 -0
  317. package/link/utils/createOperation.d.ts +3 -3
  318. package/link/utils/createOperation.js +8 -11
  319. package/link/utils/createOperation.js.map +1 -1
  320. package/link/utils/filterOperationVariables.d.ts +1 -1
  321. package/link/utils/filterOperationVariables.js +6 -5
  322. package/link/utils/filterOperationVariables.js.map +1 -1
  323. package/link/utils/fromError.d.ts +3 -0
  324. package/link/utils/fromError.js +7 -0
  325. package/link/utils/fromError.js.map +1 -0
  326. package/link/utils/fromPromise.d.ts +3 -0
  327. package/link/utils/fromPromise.js +12 -0
  328. package/link/utils/fromPromise.js.map +1 -0
  329. package/link/utils/index.d.ts +7 -1
  330. package/link/utils/index.js +6 -1
  331. package/link/utils/index.js.map +1 -1
  332. package/link/utils/package.json +8 -0
  333. package/link/utils/throwServerError.d.ts +7 -0
  334. package/link/utils/throwServerError.js +9 -0
  335. package/link/utils/throwServerError.js.map +1 -0
  336. package/link/utils/toPromise.d.ts +3 -0
  337. package/link/utils/toPromise.js +19 -0
  338. package/link/utils/toPromise.js.map +1 -0
  339. package/link/utils/transformOperation.d.ts +2 -2
  340. package/link/utils/transformOperation.js +4 -4
  341. package/link/utils/transformOperation.js.map +1 -1
  342. package/link/utils/utils.cjs +134 -0
  343. package/link/utils/utils.cjs.map +1 -0
  344. package/link/utils/utils.cjs.native.js +134 -0
  345. package/link/utils/utils.d.cts +1 -0
  346. package/link/utils/validateOperation.d.ts +2 -2
  347. package/link/utils/validateOperation.js +6 -5
  348. package/link/utils/validateOperation.js.map +1 -1
  349. package/link/ws/index.d.ts +4 -4
  350. package/link/ws/index.js +15 -11
  351. package/link/ws/index.js.map +1 -1
  352. package/link/ws/package.json +8 -0
  353. package/link/ws/ws.cjs +28 -0
  354. package/link/ws/ws.cjs.map +1 -0
  355. package/link/ws/ws.cjs.native.js +28 -0
  356. package/link/ws/ws.d.cts +1 -0
  357. package/main.cjs +16 -0
  358. package/main.cjs.map +1 -0
  359. package/main.cjs.native.js +16 -0
  360. package/main.d.cts +1 -0
  361. package/masking/__benches__/types.bench.d.ts +2 -0
  362. package/masking/__benches__/types.bench.js +222 -0
  363. package/masking/__benches__/types.bench.js.map +1 -0
  364. package/masking/index.d.ts +1 -2
  365. package/masking/index.js +1 -1
  366. package/masking/index.js.map +1 -1
  367. package/masking/internal/types.d.ts +3 -2
  368. package/masking/internal/types.js +1 -1
  369. package/masking/internal/types.js.map +1 -1
  370. package/masking/maskDefinition.d.ts +4 -4
  371. package/masking/maskDefinition.js +34 -32
  372. package/masking/maskDefinition.js.map +1 -1
  373. package/masking/maskFragment.d.ts +4 -8
  374. package/masking/maskFragment.js +21 -16
  375. package/masking/maskFragment.js.map +1 -1
  376. package/masking/maskOperation.d.ts +4 -8
  377. package/masking/maskOperation.js +18 -14
  378. package/masking/maskOperation.js.map +1 -1
  379. package/masking/masking.cjs +205 -0
  380. package/masking/masking.cjs.map +1 -0
  381. package/masking/masking.cjs.native.js +205 -0
  382. package/masking/masking.d.cts +1 -0
  383. package/masking/package.json +8 -0
  384. package/masking/types.d.ts +27 -13
  385. package/masking/types.js +1 -1
  386. package/masking/types.js.map +1 -1
  387. package/masking/utils.d.ts +5 -8
  388. package/masking/utils.js +12 -34
  389. package/masking/utils.js.map +1 -1
  390. package/package.json +116 -259
  391. package/react/components/Mutation.d.ts +18 -0
  392. package/react/components/Mutation.js +28 -0
  393. package/react/components/Mutation.js.map +1 -0
  394. package/react/components/Query.d.ts +18 -0
  395. package/react/components/Query.js +29 -0
  396. package/react/components/Query.js.map +1 -0
  397. package/react/components/Subscription.d.ts +18 -0
  398. package/react/components/Subscription.js +23 -0
  399. package/react/components/Subscription.js.map +1 -0
  400. package/react/components/components.cjs +81 -0
  401. package/react/components/components.cjs.map +1 -0
  402. package/react/components/components.cjs.native.js +81 -0
  403. package/react/components/components.d.cts +1 -0
  404. package/react/components/index.d.ts +5 -0
  405. package/react/components/index.js +4 -0
  406. package/react/components/index.js.map +1 -0
  407. package/react/components/package.json +8 -0
  408. package/react/components/types.d.ts +21 -0
  409. package/react/components/types.js +2 -0
  410. package/react/components/types.js.map +1 -0
  411. package/react/context/ApolloConsumer.d.ts +5 -8
  412. package/react/context/ApolloConsumer.js +7 -7
  413. package/react/context/ApolloConsumer.js.map +1 -1
  414. package/react/context/ApolloContext.d.ts +11 -5
  415. package/react/context/ApolloContext.js +13 -6
  416. package/react/context/ApolloContext.js.map +1 -1
  417. package/react/context/ApolloProvider.d.ts +6 -8
  418. package/react/context/ApolloProvider.js +11 -12
  419. package/react/context/ApolloProvider.js.map +1 -1
  420. package/react/context/context.cjs +64 -0
  421. package/react/context/context.cjs.map +1 -0
  422. package/react/context/context.cjs.native.js +64 -0
  423. package/react/context/context.d.cts +1 -0
  424. package/react/context/index.d.ts +8 -0
  425. package/react/context/index.js +5 -0
  426. package/react/context/index.js.map +1 -0
  427. package/react/context/package.json +8 -0
  428. package/react/hoc/graphql.d.ts +11 -0
  429. package/react/hoc/graphql.js +22 -0
  430. package/react/hoc/graphql.js.map +1 -0
  431. package/react/hoc/hoc-utils.d.ts +17 -0
  432. package/react/hoc/hoc-utils.js +48 -0
  433. package/react/hoc/hoc-utils.js.map +1 -0
  434. package/react/hoc/hoc.cjs +322 -0
  435. package/react/hoc/hoc.cjs.map +1 -0
  436. package/react/hoc/hoc.cjs.native.js +322 -0
  437. package/react/hoc/hoc.d.cts +1 -0
  438. package/react/hoc/index.d.ts +8 -0
  439. package/react/hoc/index.js +7 -0
  440. package/react/hoc/index.js.map +1 -0
  441. package/react/hoc/mutation-hoc.d.ts +12 -0
  442. package/react/hoc/mutation-hoc.js +83 -0
  443. package/react/hoc/mutation-hoc.js.map +1 -0
  444. package/react/hoc/package.json +8 -0
  445. package/react/hoc/query-hoc.d.ts +10 -0
  446. package/react/hoc/query-hoc.js +81 -0
  447. package/react/hoc/query-hoc.js.map +1 -0
  448. package/react/hoc/subscription-hoc.d.ts +10 -0
  449. package/react/hoc/subscription-hoc.js +90 -0
  450. package/react/hoc/subscription-hoc.js.map +1 -0
  451. package/react/hoc/types.d.ts +42 -0
  452. package/react/hoc/types.js +2 -0
  453. package/react/hoc/types.js.map +1 -0
  454. package/react/hoc/withApollo.d.ts +9 -0
  455. package/react/hoc/withApollo.js +48 -0
  456. package/react/hoc/withApollo.js.map +1 -0
  457. package/react/hooks/constants.d.ts +1 -1
  458. package/react/hooks/constants.js +2 -2
  459. package/react/hooks/constants.js.map +1 -1
  460. package/react/hooks/hooks.cjs +1262 -0
  461. package/react/hooks/hooks.cjs.map +1 -0
  462. package/react/hooks/hooks.cjs.native.js +1262 -0
  463. package/react/hooks/hooks.d.cts +1 -0
  464. package/react/hooks/index.d.ts +23 -0
  465. package/react/hooks/index.js +16 -0
  466. package/react/hooks/index.js.map +1 -0
  467. package/react/hooks/internal/__use.d.ts +1 -1
  468. package/react/hooks/internal/__use.js +11 -11
  469. package/react/hooks/internal/__use.js.map +1 -1
  470. package/react/hooks/internal/index.d.ts +2 -1
  471. package/react/hooks/internal/index.js +2 -1
  472. package/react/hooks/internal/index.js.map +1 -1
  473. package/react/hooks/internal/useDeepMemo.d.ts +1 -1
  474. package/react/hooks/internal/useDeepMemo.js +4 -6
  475. package/react/hooks/internal/useDeepMemo.js.map +1 -1
  476. package/react/hooks/internal/useIsomorphicLayoutEffect.d.ts +2 -2
  477. package/react/hooks/internal/useIsomorphicLayoutEffect.js +4 -4
  478. package/react/hooks/internal/useIsomorphicLayoutEffect.js.map +1 -1
  479. package/react/hooks/internal/useRenderGuard.d.ts +1 -1
  480. package/react/hooks/internal/useRenderGuard.js +5 -5
  481. package/react/hooks/internal/useRenderGuard.js.map +1 -1
  482. package/react/hooks/internal/wrapHook.d.ts +45 -51
  483. package/react/hooks/internal/wrapHook.js +40 -61
  484. package/react/hooks/internal/wrapHook.js.map +1 -1
  485. package/react/hooks/package.json +8 -0
  486. package/react/hooks/useApolloClient.d.ts +3 -3
  487. package/react/hooks/useApolloClient.js +7 -20
  488. package/react/hooks/useApolloClient.js.map +1 -1
  489. package/react/hooks/useBackgroundQuery.d.ts +57 -191
  490. package/react/hooks/useBackgroundQuery.js +35 -33
  491. package/react/hooks/useBackgroundQuery.js.map +1 -1
  492. package/react/hooks/useFragment.d.ts +28 -54
  493. package/react/hooks/useFragment.js +38 -47
  494. package/react/hooks/useFragment.js.map +1 -1
  495. package/react/hooks/useLazyQuery.d.ts +40 -279
  496. package/react/hooks/useLazyQuery.js +91 -124
  497. package/react/hooks/useLazyQuery.js.map +1 -1
  498. package/react/hooks/useLoadableQuery.d.ts +48 -119
  499. package/react/hooks/useLoadableQuery.js +67 -242
  500. package/react/hooks/useLoadableQuery.js.map +1 -1
  501. package/react/hooks/useMutation.d.ts +5 -232
  502. package/react/hooks/useMutation.js +112 -207
  503. package/react/hooks/useMutation.js.map +1 -1
  504. package/react/hooks/useQuery.d.ts +70 -263
  505. package/react/hooks/useQuery.js +382 -290
  506. package/react/hooks/useQuery.js.map +1 -1
  507. package/react/hooks/useQueryRefHandlers.d.ts +23 -24
  508. package/react/hooks/useQueryRefHandlers.js +31 -72
  509. package/react/hooks/useQueryRefHandlers.js.map +1 -1
  510. package/react/hooks/useReactiveVar.d.ts +2 -2
  511. package/react/hooks/useReactiveVar.js +3 -3
  512. package/react/hooks/useReactiveVar.js.map +1 -1
  513. package/react/hooks/useReadQuery.d.ts +29 -23
  514. package/react/hooks/useReadQuery.js +15 -16
  515. package/react/hooks/useReadQuery.js.map +1 -1
  516. package/react/hooks/useSubscription.d.ts +12 -96
  517. package/react/hooks/useSubscription.js +122 -68
  518. package/react/hooks/useSubscription.js.map +1 -1
  519. package/react/hooks/useSuspenseFragment.d.ts +40 -42
  520. package/react/hooks/useSuspenseFragment.js +23 -21
  521. package/react/hooks/useSuspenseFragment.js.map +1 -1
  522. package/react/hooks/useSuspenseQuery.d.ts +40 -189
  523. package/react/hooks/useSuspenseQuery.js +97 -102
  524. package/react/hooks/useSuspenseQuery.js.map +1 -1
  525. package/react/hooks/useSyncExternalStore.d.ts +1 -1
  526. package/react/hooks/useSyncExternalStore.js +25 -44
  527. package/react/hooks/useSyncExternalStore.js.map +1 -1
  528. package/react/index.d.ts +9 -24
  529. package/react/index.js +5 -19
  530. package/react/index.js.map +1 -1
  531. package/react/internal/cache/FragmentReference.d.ts +8 -9
  532. package/react/internal/cache/FragmentReference.js +64 -72
  533. package/react/internal/cache/FragmentReference.js.map +1 -1
  534. package/react/internal/cache/QueryReference.d.ts +119 -59
  535. package/react/internal/cache/QueryReference.js +177 -141
  536. package/react/internal/cache/QueryReference.js.map +1 -1
  537. package/react/internal/cache/SuspenseCache.d.ts +6 -6
  538. package/react/internal/cache/SuspenseCache.js +22 -19
  539. package/react/internal/cache/SuspenseCache.js.map +1 -1
  540. package/react/internal/cache/getSuspenseCache.d.ts +5 -5
  541. package/react/internal/cache/getSuspenseCache.js +4 -3
  542. package/react/internal/cache/getSuspenseCache.js.map +1 -1
  543. package/react/internal/cache/types.d.ts +1 -1
  544. package/react/internal/cache/types.js +1 -1
  545. package/react/internal/cache/types.js.map +1 -1
  546. package/react/internal/index.d.ts +3 -5
  547. package/react/internal/index.js +2 -3
  548. package/react/internal/index.js.map +1 -1
  549. package/react/internal/internal.cjs +533 -0
  550. package/react/internal/internal.cjs.map +1 -0
  551. package/react/internal/internal.cjs.native.js +533 -0
  552. package/react/internal/internal.d.cts +1 -0
  553. package/react/internal/package.json +8 -0
  554. package/react/package.json +8 -0
  555. package/react/parser/index.d.ts +18 -0
  556. package/react/parser/index.js +109 -0
  557. package/react/parser/index.js.map +1 -0
  558. package/react/parser/package.json +8 -0
  559. package/react/parser/parser.cjs +122 -0
  560. package/react/parser/parser.cjs.map +1 -0
  561. package/react/parser/parser.cjs.native.js +122 -0
  562. package/react/parser/parser.d.cts +1 -0
  563. package/react/query-preloader/createQueryPreloader.d.ts +171 -170
  564. package/react/query-preloader/createQueryPreloader.js +10 -17
  565. package/react/query-preloader/createQueryPreloader.js.map +1 -1
  566. package/react/react.cjs +45 -0
  567. package/react/react.cjs.map +1 -0
  568. package/react/react.cjs.native.js +45 -0
  569. package/react/react.d.cts +1 -0
  570. package/react/ssr/RenderPromises.d.ts +22 -0
  571. package/react/ssr/RenderPromises.js +107 -0
  572. package/react/ssr/RenderPromises.js.map +1 -0
  573. package/react/ssr/getDataFromTree.d.ts +3 -15
  574. package/react/ssr/getDataFromTree.js +39 -29
  575. package/react/ssr/getDataFromTree.js.map +1 -1
  576. package/react/ssr/index.d.ts +3 -3
  577. package/react/ssr/index.js +3 -3
  578. package/react/ssr/index.js.map +1 -1
  579. package/react/ssr/package.json +8 -0
  580. package/react/ssr/renderToStringWithData.d.ts +1 -6
  581. package/react/ssr/renderToStringWithData.js +6 -12
  582. package/react/ssr/renderToStringWithData.js.map +1 -1
  583. package/react/ssr/ssr.cjs +150 -0
  584. package/react/ssr/ssr.cjs.map +1 -0
  585. package/react/ssr/ssr.cjs.native.js +150 -0
  586. package/react/ssr/ssr.d.cts +1 -0
  587. package/react/types/types.d.ts +816 -0
  588. package/react/types/types.documentation.d.ts +89 -48
  589. package/react/types/types.documentation.js +1 -1
  590. package/react/types/types.documentation.js.map +1 -1
  591. package/react/types/types.js +2 -0
  592. package/react/types/types.js.map +1 -0
  593. package/testing/core/core.cjs +370 -0
  594. package/testing/core/core.cjs.map +1 -0
  595. package/testing/core/core.cjs.native.js +370 -0
  596. package/testing/core/core.d.cts +1 -0
  597. package/testing/core/index.d.ts +9 -0
  598. package/testing/core/index.js +8 -0
  599. package/testing/core/index.js.map +1 -0
  600. package/testing/core/itAsync.d.ts +6 -0
  601. package/testing/core/itAsync.js +23 -0
  602. package/testing/core/itAsync.js.map +1 -0
  603. package/testing/core/mocking/mockClient.d.ts +5 -0
  604. package/testing/core/mocking/mockClient.js +16 -0
  605. package/testing/core/mocking/mockClient.js.map +1 -0
  606. package/testing/core/mocking/mockFetch.d.ts +24 -0
  607. package/testing/core/mocking/mockFetch.js +87 -0
  608. package/testing/core/mocking/mockFetch.js.map +1 -0
  609. package/testing/core/mocking/mockLink.d.ts +25 -49
  610. package/testing/core/mocking/mockLink.js +161 -147
  611. package/testing/core/mocking/mockLink.js.map +1 -1
  612. package/testing/core/mocking/mockSubscriptionLink.d.ts +13 -11
  613. package/testing/core/mocking/mockSubscriptionLink.js +40 -30
  614. package/testing/core/mocking/mockSubscriptionLink.js.map +1 -1
  615. package/testing/core/package.json +8 -0
  616. package/testing/core/subscribeAndCount.d.ts +3 -0
  617. package/testing/core/subscribeAndCount.js +21 -0
  618. package/testing/core/subscribeAndCount.js.map +1 -0
  619. package/testing/core/wait.d.ts +3 -0
  620. package/testing/core/wait.js +16 -0
  621. package/testing/core/wait.js.map +1 -0
  622. package/testing/core/withConsoleSpy.d.ts +7 -0
  623. package/testing/core/withConsoleSpy.js +45 -0
  624. package/testing/core/withConsoleSpy.js.map +1 -0
  625. package/testing/core/wrap.d.ts +4 -0
  626. package/testing/core/wrap.js +30 -0
  627. package/testing/core/wrap.js.map +1 -0
  628. package/testing/experimental/createSchemaFetch.d.ts +43 -0
  629. package/testing/experimental/createSchemaFetch.js +103 -0
  630. package/testing/experimental/createSchemaFetch.js.map +1 -0
  631. package/testing/experimental/createTestSchema.d.ts +57 -0
  632. package/testing/experimental/createTestSchema.js +112 -0
  633. package/testing/experimental/createTestSchema.js.map +1 -0
  634. package/testing/experimental/experimental.cjs +276 -0
  635. package/testing/experimental/experimental.cjs.map +1 -0
  636. package/testing/experimental/experimental.cjs.native.js +276 -0
  637. package/testing/experimental/experimental.d.cts +1 -0
  638. package/testing/experimental/graphql-tools/utils.d.ts +26 -0
  639. package/testing/experimental/graphql-tools/utils.js +172 -0
  640. package/testing/experimental/graphql-tools/utils.js.map +1 -0
  641. package/testing/experimental/graphql-tools/utils.test.d.ts +2 -0
  642. package/testing/experimental/graphql-tools/utils.test.js +139 -0
  643. package/testing/experimental/graphql-tools/utils.test.js.map +1 -0
  644. package/testing/experimental/index.d.ts +3 -0
  645. package/testing/experimental/index.js +3 -0
  646. package/testing/experimental/index.js.map +1 -0
  647. package/testing/experimental/package.json +8 -0
  648. package/testing/index.d.ts +5 -4
  649. package/testing/index.js +4 -3
  650. package/testing/index.js.map +1 -1
  651. package/testing/internal/ObservableStream.d.ts +28 -0
  652. package/testing/internal/ObservableStream.js +123 -0
  653. package/testing/internal/ObservableStream.js.map +1 -0
  654. package/testing/internal/disposables/enableFakeTimers.d.ts +7 -0
  655. package/testing/internal/disposables/enableFakeTimers.js +16 -0
  656. package/testing/internal/disposables/enableFakeTimers.js.map +1 -0
  657. package/testing/internal/disposables/index.d.ts +5 -0
  658. package/testing/internal/disposables/index.js +5 -0
  659. package/testing/internal/disposables/index.js.map +1 -0
  660. package/testing/internal/disposables/spyOnConsole.d.ts +9 -0
  661. package/testing/internal/disposables/spyOnConsole.js +35 -0
  662. package/testing/internal/disposables/spyOnConsole.js.map +1 -0
  663. package/testing/internal/disposables/withCleanup.d.ts +3 -0
  664. package/testing/internal/disposables/withCleanup.js +14 -0
  665. package/testing/internal/disposables/withCleanup.js.map +1 -0
  666. package/testing/internal/disposables/withProdMode.d.ts +4 -0
  667. package/testing/internal/disposables/withProdMode.js +10 -0
  668. package/testing/internal/disposables/withProdMode.js.map +1 -0
  669. package/testing/internal/incremental.d.ts +23 -0
  670. package/testing/internal/incremental.js +124 -0
  671. package/testing/internal/incremental.js.map +1 -0
  672. package/testing/internal/index.d.ts +11 -0
  673. package/testing/internal/index.js +9 -0
  674. package/testing/internal/index.js.map +1 -0
  675. package/testing/internal/renderHelpers.d.ts +23 -0
  676. package/testing/internal/renderHelpers.js +30 -0
  677. package/testing/internal/renderHelpers.js.map +1 -0
  678. package/testing/internal/rtl/actAsync.d.ts +2 -0
  679. package/testing/internal/rtl/actAsync.js +21 -0
  680. package/testing/internal/rtl/actAsync.js.map +1 -0
  681. package/testing/internal/rtl/renderAsync.d.ts +9 -0
  682. package/testing/internal/rtl/renderAsync.js +23 -0
  683. package/testing/internal/rtl/renderAsync.js.map +1 -0
  684. package/testing/internal/rtl/renderHookAsync.d.ts +8 -0
  685. package/testing/internal/rtl/renderHookAsync.js +46 -0
  686. package/testing/internal/rtl/renderHookAsync.js.map +1 -0
  687. package/testing/internal/scenarios/index.d.ts +85 -0
  688. package/testing/internal/scenarios/index.js +71 -0
  689. package/testing/internal/scenarios/index.js.map +1 -0
  690. package/testing/matchers/index.d.ts +2 -0
  691. package/testing/matchers/index.js +36 -0
  692. package/testing/matchers/index.js.map +1 -0
  693. package/testing/matchers/toBeDisposed.d.ts +3 -0
  694. package/testing/matchers/toBeDisposed.js +17 -0
  695. package/testing/matchers/toBeDisposed.js.map +1 -0
  696. package/testing/matchers/toBeGarbageCollected.d.ts +8 -0
  697. package/testing/matchers/toBeGarbageCollected.js +48 -0
  698. package/testing/matchers/toBeGarbageCollected.js.map +1 -0
  699. package/testing/matchers/toComplete.d.ts +4 -0
  700. package/testing/matchers/toComplete.js +42 -0
  701. package/testing/matchers/toComplete.js.map +1 -0
  702. package/testing/matchers/toEmitAnything.d.ts +4 -0
  703. package/testing/matchers/toEmitAnything.js +46 -0
  704. package/testing/matchers/toEmitAnything.js.map +1 -0
  705. package/testing/matchers/toEmitApolloQueryResult.d.ts +8 -0
  706. package/testing/matchers/toEmitApolloQueryResult.js +51 -0
  707. package/testing/matchers/toEmitApolloQueryResult.js.map +1 -0
  708. package/testing/matchers/toEmitError.d.ts +7 -0
  709. package/testing/matchers/toEmitError.js +59 -0
  710. package/testing/matchers/toEmitError.js.map +1 -0
  711. package/testing/matchers/toEmitFetchResult.d.ts +8 -0
  712. package/testing/matchers/toEmitFetchResult.js +51 -0
  713. package/testing/matchers/toEmitFetchResult.js.map +1 -0
  714. package/testing/matchers/toEmitMatchedValue.d.ts +7 -0
  715. package/testing/matchers/toEmitMatchedValue.js +51 -0
  716. package/testing/matchers/toEmitMatchedValue.js.map +1 -0
  717. package/testing/matchers/toEmitNext.d.ts +4 -0
  718. package/testing/matchers/toEmitNext.js +42 -0
  719. package/testing/matchers/toEmitNext.js.map +1 -0
  720. package/testing/matchers/toEmitValue.d.ts +4 -0
  721. package/testing/matchers/toEmitValue.js +53 -0
  722. package/testing/matchers/toEmitValue.js.map +1 -0
  723. package/testing/matchers/toEmitValueStrict.d.ts +7 -0
  724. package/testing/matchers/toEmitValueStrict.js +56 -0
  725. package/testing/matchers/toEmitValueStrict.js.map +1 -0
  726. package/testing/matchers/toEqualApolloQueryResult.d.ts +6 -0
  727. package/testing/matchers/toEqualApolloQueryResult.js +20 -0
  728. package/testing/matchers/toEqualApolloQueryResult.js.map +1 -0
  729. package/testing/matchers/toEqualFetchResult.d.ts +4 -0
  730. package/testing/matchers/toEqualFetchResult.js +20 -0
  731. package/testing/matchers/toEqualFetchResult.js.map +1 -0
  732. package/testing/matchers/toEqualQueryResult.d.ts +9 -0
  733. package/testing/matchers/toEqualQueryResult.js +40 -0
  734. package/testing/matchers/toEqualQueryResult.js.map +1 -0
  735. package/testing/matchers/toHaveSuspenseCacheEntryUsing.d.ts +11 -0
  736. package/testing/matchers/toHaveSuspenseCacheEntryUsing.js +24 -0
  737. package/testing/matchers/toHaveSuspenseCacheEntryUsing.js.map +1 -0
  738. package/testing/matchers/toMatchDocument.d.ts +4 -0
  739. package/testing/matchers/toMatchDocument.js +33 -0
  740. package/testing/matchers/toMatchDocument.js.map +1 -0
  741. package/testing/package.json +8 -0
  742. package/testing/react/MockedProvider.d.ts +15 -15
  743. package/testing/react/MockedProvider.js +33 -29
  744. package/testing/react/MockedProvider.js.map +1 -1
  745. package/testing/testing.cjs +64 -0
  746. package/testing/testing.cjs.map +1 -0
  747. package/testing/testing.cjs.native.js +64 -0
  748. package/testing/testing.d.cts +1 -0
  749. package/utilities/caching/caches.d.ts +34 -0
  750. package/utilities/caching/caches.js +69 -0
  751. package/utilities/caching/caches.js.map +1 -0
  752. package/utilities/caching/getMemoryInternals.d.ts +76 -0
  753. package/utilities/caching/getMemoryInternals.js +112 -0
  754. package/utilities/caching/getMemoryInternals.js.map +1 -0
  755. package/utilities/caching/index.d.ts +2 -1
  756. package/utilities/caching/index.js +2 -1
  757. package/utilities/caching/index.js.map +1 -1
  758. package/utilities/caching/sizes.d.ts +21 -9
  759. package/utilities/caching/sizes.js +7 -6
  760. package/utilities/caching/sizes.js.map +1 -1
  761. package/utilities/common/arrays.d.ts +3 -0
  762. package/utilities/common/arrays.js +6 -0
  763. package/utilities/common/arrays.js.map +1 -0
  764. package/utilities/common/canUse.d.ts +7 -0
  765. package/utilities/common/canUse.js +26 -0
  766. package/utilities/common/canUse.js.map +1 -0
  767. package/utilities/common/canonicalStringify.d.ts +21 -0
  768. package/utilities/common/canonicalStringify.js +84 -0
  769. package/utilities/common/canonicalStringify.js.map +1 -0
  770. package/utilities/common/cloneDeep.d.ts +5 -0
  771. package/utilities/common/cloneDeep.js +38 -0
  772. package/utilities/common/cloneDeep.js.map +1 -0
  773. package/utilities/common/compact.d.ts +7 -0
  774. package/utilities/common/compact.js +23 -0
  775. package/utilities/common/compact.js.map +1 -0
  776. package/utilities/common/errorHandling.d.ts +4 -0
  777. package/utilities/common/errorHandling.js +19 -0
  778. package/utilities/common/errorHandling.js.map +1 -0
  779. package/utilities/common/incrementalResult.d.ts +7 -0
  780. package/utilities/common/incrementalResult.js +39 -0
  781. package/utilities/common/incrementalResult.js.map +1 -0
  782. package/utilities/common/makeUniqueId.d.ts +2 -0
  783. package/utilities/common/makeUniqueId.js +9 -0
  784. package/utilities/common/makeUniqueId.js.map +1 -0
  785. package/utilities/common/maybeDeepFreeze.d.ts +3 -0
  786. package/utilities/common/maybeDeepFreeze.js +36 -0
  787. package/utilities/common/maybeDeepFreeze.js.map +1 -0
  788. package/utilities/common/mergeDeep.d.ts +14 -0
  789. package/utilities/common/mergeDeep.js +89 -0
  790. package/utilities/common/mergeDeep.js.map +1 -0
  791. package/utilities/common/mergeOptions.d.ts +5 -0
  792. package/utilities/common/mergeOptions.js +8 -0
  793. package/utilities/common/mergeOptions.js.map +1 -0
  794. package/utilities/common/objects.d.ts +3 -0
  795. package/utilities/common/objects.js +10 -0
  796. package/utilities/common/objects.js.map +1 -0
  797. package/utilities/common/omitDeep.d.ts +3 -0
  798. package/utilities/common/omitDeep.js +41 -0
  799. package/utilities/common/omitDeep.js.map +1 -0
  800. package/utilities/common/stringifyForDisplay.d.ts +2 -0
  801. package/utilities/common/stringifyForDisplay.js +11 -0
  802. package/utilities/common/stringifyForDisplay.js.map +1 -0
  803. package/utilities/common/stripTypename.d.ts +2 -8
  804. package/utilities/common/stripTypename.js +2 -8
  805. package/utilities/common/stripTypename.js.map +1 -1
  806. package/utilities/globals/global.d.ts +8 -0
  807. package/utilities/globals/global.js +14 -0
  808. package/utilities/globals/global.js.map +1 -0
  809. package/utilities/globals/globals.cjs +119 -0
  810. package/utilities/globals/globals.cjs.map +1 -0
  811. package/utilities/globals/globals.cjs.native.js +119 -0
  812. package/utilities/globals/globals.d.cts +1 -0
  813. package/utilities/globals/index.d.ts +11 -0
  814. package/utilities/globals/index.js +14 -0
  815. package/utilities/globals/index.js.map +1 -0
  816. package/utilities/globals/invariantWrappers.d.ts +64 -0
  817. package/utilities/globals/invariantWrappers.js +84 -0
  818. package/utilities/globals/invariantWrappers.js.map +1 -0
  819. package/utilities/globals/maybe.d.ts +2 -0
  820. package/utilities/globals/maybe.js +7 -0
  821. package/utilities/globals/maybe.js.map +1 -0
  822. package/utilities/globals/package.json +8 -0
  823. package/utilities/graphql/DocumentTransform.d.ts +7 -11
  824. package/utilities/graphql/DocumentTransform.js +48 -57
  825. package/utilities/graphql/DocumentTransform.js.map +1 -1
  826. package/utilities/graphql/directives.d.ts +20 -0
  827. package/utilities/graphql/directives.js +112 -0
  828. package/utilities/graphql/directives.js.map +1 -0
  829. package/utilities/graphql/fragments.d.ts +35 -0
  830. package/utilities/graphql/fragments.js +118 -0
  831. package/utilities/graphql/fragments.js.map +1 -0
  832. package/utilities/graphql/getFromAST.d.ts +15 -0
  833. package/utilities/graphql/getFromAST.js +89 -0
  834. package/utilities/graphql/getFromAST.js.map +1 -0
  835. package/utilities/graphql/operations.d.ts +2 -23
  836. package/utilities/graphql/operations.js +4 -24
  837. package/utilities/graphql/operations.js.map +1 -1
  838. package/utilities/graphql/print.d.ts +1 -9
  839. package/utilities/graphql/print.js +9 -18
  840. package/utilities/graphql/print.js.map +1 -1
  841. package/utilities/graphql/storeUtils.d.ts +23 -15
  842. package/utilities/graphql/storeUtils.js +210 -6
  843. package/utilities/graphql/storeUtils.js.map +1 -1
  844. package/utilities/graphql/transform.d.ts +25 -7
  845. package/utilities/graphql/transform.js +462 -21
  846. package/utilities/graphql/transform.js.map +1 -1
  847. package/utilities/index.d.ts +44 -10
  848. package/utilities/index.js +29 -7
  849. package/utilities/index.js.map +1 -1
  850. package/utilities/observables/Concast.d.ts +28 -0
  851. package/utilities/observables/Concast.js +216 -0
  852. package/utilities/observables/Concast.js.map +1 -0
  853. package/utilities/observables/Observable.d.ts +6 -0
  854. package/utilities/observables/Observable.js +17 -0
  855. package/utilities/observables/Observable.js.map +1 -0
  856. package/utilities/observables/asyncMap.d.ts +3 -0
  857. package/utilities/observables/asyncMap.js +44 -0
  858. package/utilities/observables/asyncMap.js.map +1 -0
  859. package/utilities/observables/iteration.d.ts +3 -0
  860. package/utilities/observables/iteration.js +9 -0
  861. package/utilities/observables/iteration.js.map +1 -0
  862. package/utilities/observables/subclassing.d.ts +3 -0
  863. package/utilities/observables/subclassing.js +27 -0
  864. package/utilities/observables/subclassing.js.map +1 -0
  865. package/utilities/package.json +8 -0
  866. package/utilities/policies/pagination.d.ts +6 -29
  867. package/utilities/policies/pagination.js +56 -89
  868. package/utilities/policies/pagination.js.map +1 -1
  869. package/utilities/promises/decoration.d.ts +17 -0
  870. package/utilities/promises/decoration.js +39 -0
  871. package/utilities/promises/decoration.js.map +1 -0
  872. package/utilities/promises/preventUnhandledRejection.d.ts +2 -0
  873. package/utilities/promises/preventUnhandledRejection.js +5 -0
  874. package/utilities/promises/preventUnhandledRejection.js.map +1 -0
  875. package/utilities/subscriptions/relay/index.d.ts +4 -8
  876. package/utilities/subscriptions/relay/index.js +20 -29
  877. package/utilities/subscriptions/relay/index.js.map +1 -1
  878. package/utilities/subscriptions/relay/package.json +8 -0
  879. package/utilities/subscriptions/relay/relay.cjs +372 -0
  880. package/utilities/subscriptions/relay/relay.cjs.map +1 -0
  881. package/utilities/subscriptions/relay/relay.cjs.native.js +372 -0
  882. package/utilities/subscriptions/relay/relay.d.cts +1 -0
  883. package/utilities/subscriptions/shared.d.ts +9 -0
  884. package/utilities/subscriptions/shared.js +7 -0
  885. package/utilities/subscriptions/shared.js.map +1 -0
  886. package/utilities/subscriptions/urql/index.d.ts +7 -0
  887. package/utilities/subscriptions/urql/index.js +45 -0
  888. package/utilities/subscriptions/urql/index.js.map +1 -0
  889. package/utilities/subscriptions/urql/package.json +8 -0
  890. package/utilities/subscriptions/urql/urql.cjs +372 -0
  891. package/utilities/subscriptions/urql/urql.cjs.map +1 -0
  892. package/utilities/subscriptions/urql/urql.cjs.native.js +372 -0
  893. package/utilities/subscriptions/urql/urql.d.cts +1 -0
  894. package/utilities/types/DeepOmit.d.ts +10 -0
  895. package/utilities/types/DeepOmit.js +2 -0
  896. package/utilities/types/DeepOmit.js.map +1 -0
  897. package/utilities/types/DeepPartial.d.ts +12 -0
  898. package/utilities/types/DeepPartial.js +6 -0
  899. package/utilities/types/DeepPartial.js.map +1 -0
  900. package/utilities/types/IsStrictlyAny.d.ts +5 -0
  901. package/utilities/types/IsStrictlyAny.js +2 -0
  902. package/utilities/types/IsStrictlyAny.js.map +1 -0
  903. package/utilities/types/NoInfer.d.ts +27 -0
  904. package/utilities/types/NoInfer.js +2 -0
  905. package/utilities/types/NoInfer.js.map +1 -0
  906. package/utilities/types/OnlyRequiredProperties.d.ts +7 -0
  907. package/utilities/types/OnlyRequiredProperties.js +2 -0
  908. package/utilities/types/OnlyRequiredProperties.js.map +1 -0
  909. package/utilities/types/Prettify.d.ts +4 -0
  910. package/utilities/types/Prettify.js +2 -0
  911. package/utilities/types/Prettify.js.map +1 -0
  912. package/utilities/types/Primitive.d.ts +2 -0
  913. package/utilities/types/Primitive.js +2 -0
  914. package/utilities/types/Primitive.js.map +1 -0
  915. package/utilities/types/RemoveIndexSignature.d.ts +4 -0
  916. package/utilities/types/RemoveIndexSignature.js +2 -0
  917. package/utilities/types/RemoveIndexSignature.js.map +1 -0
  918. package/utilities/types/TODO.d.ts +3 -0
  919. package/utilities/types/TODO.js +2 -0
  920. package/utilities/types/TODO.js.map +1 -0
  921. package/utilities/types/UnionToIntersection.d.ts +2 -0
  922. package/utilities/types/UnionToIntersection.js +2 -0
  923. package/utilities/types/UnionToIntersection.js.map +1 -0
  924. package/utilities/utilities.cjs +1809 -0
  925. package/utilities/utilities.cjs.map +1 -0
  926. package/utilities/utilities.cjs.native.js +1809 -0
  927. package/utilities/utilities.d.cts +1 -0
  928. package/version.d.ts +2 -3
  929. package/version.js +2 -3
  930. package/version.js.map +1 -1
  931. package/__cjs/cache/core/cache.cjs +0 -210
  932. package/__cjs/cache/core/cache.cjs.map +0 -1
  933. package/__cjs/cache/core/cache.d.cts +0 -140
  934. package/__cjs/cache/core/types/Cache.cjs +0 -7
  935. package/__cjs/cache/core/types/Cache.cjs.map +0 -1
  936. package/__cjs/cache/core/types/Cache.d.cts +0 -56
  937. package/__cjs/cache/core/types/DataProxy.cjs +0 -3
  938. package/__cjs/cache/core/types/DataProxy.cjs.map +0 -1
  939. package/__cjs/cache/core/types/DataProxy.d.cts +0 -140
  940. package/__cjs/cache/core/types/common.cjs +0 -33
  941. package/__cjs/cache/core/types/common.cjs.map +0 -1
  942. package/__cjs/cache/core/types/common.d.cts +0 -64
  943. package/__cjs/cache/index.cjs +0 -25
  944. package/__cjs/cache/index.cjs.map +0 -1
  945. package/__cjs/cache/index.d.cts +0 -19
  946. package/__cjs/cache/inmemory/entityStore.cjs +0 -680
  947. package/__cjs/cache/inmemory/entityStore.cjs.map +0 -1
  948. package/__cjs/cache/inmemory/entityStore.d.cts +0 -93
  949. package/__cjs/cache/inmemory/fragmentRegistry.cjs +0 -129
  950. package/__cjs/cache/inmemory/fragmentRegistry.cjs.map +0 -1
  951. package/__cjs/cache/inmemory/fragmentRegistry.d.cts +0 -9
  952. package/__cjs/cache/inmemory/helpers.cjs +0 -93
  953. package/__cjs/cache/inmemory/helpers.cjs.map +0 -1
  954. package/__cjs/cache/inmemory/helpers.d.cts +0 -21
  955. package/__cjs/cache/inmemory/inMemoryCache.cjs +0 -458
  956. package/__cjs/cache/inmemory/inMemoryCache.cjs.map +0 -1
  957. package/__cjs/cache/inmemory/inMemoryCache.d.cts +0 -66
  958. package/__cjs/cache/inmemory/key-extractor.cjs +0 -192
  959. package/__cjs/cache/inmemory/key-extractor.cjs.map +0 -1
  960. package/__cjs/cache/inmemory/key-extractor.d.cts +0 -9
  961. package/__cjs/cache/inmemory/policies.cjs +0 -609
  962. package/__cjs/cache/inmemory/policies.cjs.map +0 -1
  963. package/__cjs/cache/inmemory/policies.d.cts +0 -98
  964. package/__cjs/cache/inmemory/reactiveVars.cjs +0 -89
  965. package/__cjs/cache/inmemory/reactiveVars.cjs.map +0 -1
  966. package/__cjs/cache/inmemory/reactiveVars.d.cts +0 -19
  967. package/__cjs/cache/inmemory/readFromStore.cjs +0 -294
  968. package/__cjs/cache/inmemory/readFromStore.cjs.map +0 -1
  969. package/__cjs/cache/inmemory/readFromStore.d.cts +0 -27
  970. package/__cjs/cache/inmemory/types.cjs +0 -3
  971. package/__cjs/cache/inmemory/types.cjs.map +0 -1
  972. package/__cjs/cache/inmemory/types.d.cts +0 -111
  973. package/__cjs/cache/inmemory/writeToStore.cjs +0 -579
  974. package/__cjs/cache/inmemory/writeToStore.cjs.map +0 -1
  975. package/__cjs/cache/inmemory/writeToStore.d.cts +0 -38
  976. package/__cjs/core/ApolloClient.cjs +0 -604
  977. package/__cjs/core/ApolloClient.cjs.map +0 -1
  978. package/__cjs/core/ApolloClient.d.cts +0 -462
  979. package/__cjs/core/ObservableQuery.cjs +0 -1319
  980. package/__cjs/core/ObservableQuery.cjs.map +0 -1
  981. package/__cjs/core/ObservableQuery.d.cts +0 -382
  982. package/__cjs/core/QueryInfo.cjs +0 -397
  983. package/__cjs/core/QueryInfo.cjs.map +0 -1
  984. package/__cjs/core/QueryInfo.d.cts +0 -68
  985. package/__cjs/core/QueryManager.cjs +0 -1148
  986. package/__cjs/core/QueryManager.cjs.map +0 -1
  987. package/__cjs/core/QueryManager.d.cts +0 -151
  988. package/__cjs/core/equalByQuery.cjs +0 -88
  989. package/__cjs/core/equalByQuery.cjs.map +0 -1
  990. package/__cjs/core/equalByQuery.d.cts +0 -4
  991. package/__cjs/core/index.cjs +0 -79
  992. package/__cjs/core/index.cjs.map +0 -1
  993. package/__cjs/core/index.d.cts +0 -21
  994. package/__cjs/core/networkStatus.cjs +0 -67
  995. package/__cjs/core/networkStatus.cjs.map +0 -1
  996. package/__cjs/core/networkStatus.d.cts +0 -57
  997. package/__cjs/core/types.cjs +0 -3
  998. package/__cjs/core/types.cjs.map +0 -1
  999. package/__cjs/core/types.d.cts +0 -286
  1000. package/__cjs/core/watchQueryOptions.cjs +0 -3
  1001. package/__cjs/core/watchQueryOptions.cjs.map +0 -1
  1002. package/__cjs/core/watchQueryOptions.d.cts +0 -364
  1003. package/__cjs/dev/index.cjs +0 -12
  1004. package/__cjs/dev/index.cjs.map +0 -1
  1005. package/__cjs/dev/index.d.cts +0 -6
  1006. package/__cjs/dev/loadDevMessages.cjs +0 -9
  1007. package/__cjs/dev/loadDevMessages.cjs.map +0 -1
  1008. package/__cjs/dev/loadDevMessages.d.cts +0 -2
  1009. package/__cjs/dev/loadErrorMessageHandler.cjs +0 -27
  1010. package/__cjs/dev/loadErrorMessageHandler.cjs.map +0 -1
  1011. package/__cjs/dev/loadErrorMessageHandler.d.cts +0 -8
  1012. package/__cjs/dev/loadErrorMessages.cjs +0 -9
  1013. package/__cjs/dev/loadErrorMessages.cjs.map +0 -1
  1014. package/__cjs/dev/loadErrorMessages.d.cts +0 -2
  1015. package/__cjs/dev/setErrorMessageHandler.cjs +0 -12
  1016. package/__cjs/dev/setErrorMessageHandler.cjs.map +0 -1
  1017. package/__cjs/dev/setErrorMessageHandler.d.cts +0 -34
  1018. package/__cjs/dev/symbol.cjs +0 -7
  1019. package/__cjs/dev/symbol.cjs.map +0 -1
  1020. package/__cjs/dev/symbol.d.cts +0 -10
  1021. package/__cjs/errors/CombinedGraphQLErrors.cjs +0 -52
  1022. package/__cjs/errors/CombinedGraphQLErrors.cjs.map +0 -1
  1023. package/__cjs/errors/CombinedGraphQLErrors.d.cts +0 -37
  1024. package/__cjs/errors/CombinedProtocolErrors.cjs +0 -31
  1025. package/__cjs/errors/CombinedProtocolErrors.cjs.map +0 -1
  1026. package/__cjs/errors/CombinedProtocolErrors.d.cts +0 -20
  1027. package/__cjs/errors/LinkError.cjs +0 -24
  1028. package/__cjs/errors/LinkError.cjs.map +0 -1
  1029. package/__cjs/errors/LinkError.d.cts +0 -18
  1030. package/__cjs/errors/LocalStateError.cjs +0 -27
  1031. package/__cjs/errors/LocalStateError.cjs.map +0 -1
  1032. package/__cjs/errors/LocalStateError.d.cts +0 -20
  1033. package/__cjs/errors/ServerError.cjs +0 -36
  1034. package/__cjs/errors/ServerError.cjs.map +0 -1
  1035. package/__cjs/errors/ServerError.d.cts +0 -27
  1036. package/__cjs/errors/ServerParseError.cjs +0 -38
  1037. package/__cjs/errors/ServerParseError.cjs.map +0 -1
  1038. package/__cjs/errors/ServerParseError.d.cts +0 -26
  1039. package/__cjs/errors/UnconventionalError.cjs +0 -23
  1040. package/__cjs/errors/UnconventionalError.cjs.map +0 -1
  1041. package/__cjs/errors/UnconventionalError.d.cts +0 -11
  1042. package/__cjs/errors/index.cjs +0 -45
  1043. package/__cjs/errors/index.cjs.map +0 -1
  1044. package/__cjs/errors/index.d.cts +0 -14
  1045. package/__cjs/errors/isErrorLike.cjs +0 -12
  1046. package/__cjs/errors/isErrorLike.cjs.map +0 -1
  1047. package/__cjs/errors/isErrorLike.d.cts +0 -3
  1048. package/__cjs/errors/utils.cjs +0 -18
  1049. package/__cjs/errors/utils.cjs.map +0 -1
  1050. package/__cjs/errors/utils.d.cts +0 -3
  1051. package/__cjs/incremental/handlers/defer20220824.cjs +0 -102
  1052. package/__cjs/incremental/handlers/defer20220824.cjs.map +0 -1
  1053. package/__cjs/incremental/handlers/defer20220824.d.cts +0 -55
  1054. package/__cjs/incremental/handlers/notImplemented.cjs +0 -19
  1055. package/__cjs/incremental/handlers/notImplemented.cjs.map +0 -1
  1056. package/__cjs/incremental/handlers/notImplemented.d.cts +0 -9
  1057. package/__cjs/incremental/index.cjs +0 -9
  1058. package/__cjs/incremental/index.cjs.map +0 -1
  1059. package/__cjs/incremental/index.d.cts +0 -4
  1060. package/__cjs/incremental/types.cjs +0 -3
  1061. package/__cjs/incremental/types.cjs.map +0 -1
  1062. package/__cjs/incremental/types.d.cts +0 -24
  1063. package/__cjs/invariantErrorCodes.cjs +0 -712
  1064. package/__cjs/invariantErrorCodes.cjs.map +0 -1
  1065. package/__cjs/invariantErrorCodes.d.cts +0 -13
  1066. package/__cjs/link/batch/batchLink.cjs +0 -33
  1067. package/__cjs/link/batch/batchLink.cjs.map +0 -1
  1068. package/__cjs/link/batch/batchLink.d.cts +0 -42
  1069. package/__cjs/link/batch/batching.cjs +0 -156
  1070. package/__cjs/link/batch/batching.cjs.map +0 -1
  1071. package/__cjs/link/batch/batching.d.cts +0 -27
  1072. package/__cjs/link/batch/index.cjs +0 -7
  1073. package/__cjs/link/batch/index.cjs.map +0 -1
  1074. package/__cjs/link/batch/index.d.cts +0 -3
  1075. package/__cjs/link/batch-http/batchHttpLink.cjs +0 -144
  1076. package/__cjs/link/batch-http/batchHttpLink.cjs.map +0 -1
  1077. package/__cjs/link/batch-http/batchHttpLink.d.cts +0 -26
  1078. package/__cjs/link/batch-http/index.cjs +0 -7
  1079. package/__cjs/link/batch-http/index.cjs.map +0 -1
  1080. package/__cjs/link/batch-http/index.d.cts +0 -2
  1081. package/__cjs/link/client-awareness/ClientAwarenessLink.cjs +0 -45
  1082. package/__cjs/link/client-awareness/ClientAwarenessLink.cjs.map +0 -1
  1083. package/__cjs/link/client-awareness/ClientAwarenessLink.d.cts +0 -62
  1084. package/__cjs/link/client-awareness/index.cjs +0 -6
  1085. package/__cjs/link/client-awareness/index.cjs.map +0 -1
  1086. package/__cjs/link/client-awareness/index.d.cts +0 -2
  1087. package/__cjs/link/context/index.cjs +0 -45
  1088. package/__cjs/link/context/index.cjs.map +0 -1
  1089. package/__cjs/link/context/index.d.cts +0 -12
  1090. package/__cjs/link/core/ApolloLink.cjs +0 -109
  1091. package/__cjs/link/core/ApolloLink.cjs.map +0 -1
  1092. package/__cjs/link/core/ApolloLink.d.cts +0 -35
  1093. package/__cjs/link/core/concat.cjs +0 -6
  1094. package/__cjs/link/core/concat.cjs.map +0 -1
  1095. package/__cjs/link/core/concat.d.cts +0 -3
  1096. package/__cjs/link/core/empty.cjs +0 -6
  1097. package/__cjs/link/core/empty.cjs.map +0 -1
  1098. package/__cjs/link/core/empty.d.cts +0 -3
  1099. package/__cjs/link/core/execute.cjs +0 -6
  1100. package/__cjs/link/core/execute.cjs.map +0 -1
  1101. package/__cjs/link/core/execute.d.cts +0 -3
  1102. package/__cjs/link/core/from.cjs +0 -6
  1103. package/__cjs/link/core/from.cjs.map +0 -1
  1104. package/__cjs/link/core/from.d.cts +0 -3
  1105. package/__cjs/link/core/split.cjs +0 -6
  1106. package/__cjs/link/core/split.cjs.map +0 -1
  1107. package/__cjs/link/core/split.d.cts +0 -3
  1108. package/__cjs/link/core/types.cjs +0 -3
  1109. package/__cjs/link/core/types.cjs.map +0 -1
  1110. package/__cjs/link/core/types.d.cts +0 -39
  1111. package/__cjs/link/error/index.cjs +0 -85
  1112. package/__cjs/link/error/index.cjs.map +0 -1
  1113. package/__cjs/link/error/index.d.cts +0 -31
  1114. package/__cjs/link/http/BaseHttpLink.cjs +0 -111
  1115. package/__cjs/link/http/BaseHttpLink.cjs.map +0 -1
  1116. package/__cjs/link/http/BaseHttpLink.d.cts +0 -6
  1117. package/__cjs/link/http/HttpLink.cjs +0 -21
  1118. package/__cjs/link/http/HttpLink.cjs.map +0 -1
  1119. package/__cjs/link/http/HttpLink.d.cts +0 -148
  1120. package/__cjs/link/http/checkFetcher.cjs +0 -9
  1121. package/__cjs/link/http/checkFetcher.cjs.map +0 -1
  1122. package/__cjs/link/http/checkFetcher.d.cts +0 -2
  1123. package/__cjs/link/http/createSignalIfSupported.cjs +0 -17
  1124. package/__cjs/link/http/createSignalIfSupported.cjs.map +0 -1
  1125. package/__cjs/link/http/createSignalIfSupported.d.cts +0 -13
  1126. package/__cjs/link/http/index.cjs +0 -26
  1127. package/__cjs/link/http/index.cjs.map +0 -1
  1128. package/__cjs/link/http/index.d.cts +0 -11
  1129. package/__cjs/link/http/parseAndCheckHttpResponse.cjs +0 -148
  1130. package/__cjs/link/http/parseAndCheckHttpResponse.cjs.map +0 -1
  1131. package/__cjs/link/http/parseAndCheckHttpResponse.d.cts +0 -4
  1132. package/__cjs/link/http/rewriteURIForGET.cjs +0 -56
  1133. package/__cjs/link/http/rewriteURIForGET.cjs.map +0 -1
  1134. package/__cjs/link/http/rewriteURIForGET.d.cts +0 -9
  1135. package/__cjs/link/http/selectHttpOptionsAndBody.cjs +0 -109
  1136. package/__cjs/link/http/selectHttpOptionsAndBody.cjs.map +0 -1
  1137. package/__cjs/link/http/selectHttpOptionsAndBody.d.cts +0 -29
  1138. package/__cjs/link/http/selectURI.cjs +0 -18
  1139. package/__cjs/link/http/selectURI.cjs.map +0 -1
  1140. package/__cjs/link/http/selectURI.d.cts +0 -3
  1141. package/__cjs/link/http/serializeFetchParameter.cjs +0 -18
  1142. package/__cjs/link/http/serializeFetchParameter.cjs.map +0 -1
  1143. package/__cjs/link/http/serializeFetchParameter.d.cts +0 -6
  1144. package/__cjs/link/index.cjs +0 -16
  1145. package/__cjs/link/index.cjs.map +0 -1
  1146. package/__cjs/link/index.d.cts +0 -8
  1147. package/__cjs/link/persisted-queries/index.cjs +0 -228
  1148. package/__cjs/link/persisted-queries/index.cjs.map +0 -1
  1149. package/__cjs/link/persisted-queries/index.d.cts +0 -48
  1150. package/__cjs/link/remove-typename/index.cjs +0 -8
  1151. package/__cjs/link/remove-typename/index.cjs.map +0 -1
  1152. package/__cjs/link/remove-typename/index.d.cts +0 -3
  1153. package/__cjs/link/remove-typename/removeTypenameFromVariables.cjs +0 -107
  1154. package/__cjs/link/remove-typename/removeTypenameFromVariables.cjs.map +0 -1
  1155. package/__cjs/link/remove-typename/removeTypenameFromVariables.d.cts +0 -18
  1156. package/__cjs/link/retry/delayFunction.cjs +0 -21
  1157. package/__cjs/link/retry/delayFunction.cjs.map +0 -1
  1158. package/__cjs/link/retry/delayFunction.d.cts +0 -40
  1159. package/__cjs/link/retry/index.cjs +0 -6
  1160. package/__cjs/link/retry/index.cjs.map +0 -1
  1161. package/__cjs/link/retry/index.d.cts +0 -2
  1162. package/__cjs/link/retry/retryFunction.cjs +0 -12
  1163. package/__cjs/link/retry/retryFunction.cjs.map +0 -1
  1164. package/__cjs/link/retry/retryFunction.d.cts +0 -30
  1165. package/__cjs/link/retry/retryLink.cjs +0 -97
  1166. package/__cjs/link/retry/retryLink.cjs.map +0 -1
  1167. package/__cjs/link/retry/retryLink.d.cts +0 -24
  1168. package/__cjs/link/schema/index.cjs +0 -55
  1169. package/__cjs/link/schema/index.cjs.map +0 -1
  1170. package/__cjs/link/schema/index.d.cts +0 -36
  1171. package/__cjs/link/subscriptions/index.cjs +0 -77
  1172. package/__cjs/link/subscriptions/index.cjs.map +0 -1
  1173. package/__cjs/link/subscriptions/index.d.cts +0 -10
  1174. package/__cjs/link/utils/createOperation.cjs +0 -29
  1175. package/__cjs/link/utils/createOperation.cjs.map +0 -1
  1176. package/__cjs/link/utils/createOperation.d.cts +0 -3
  1177. package/__cjs/link/utils/filterOperationVariables.cjs +0 -25
  1178. package/__cjs/link/utils/filterOperationVariables.cjs.map +0 -1
  1179. package/__cjs/link/utils/filterOperationVariables.d.cts +0 -5
  1180. package/__cjs/link/utils/index.cjs +0 -12
  1181. package/__cjs/link/utils/index.cjs.map +0 -1
  1182. package/__cjs/link/utils/index.d.cts +0 -5
  1183. package/__cjs/link/utils/transformOperation.cjs +0 -21
  1184. package/__cjs/link/utils/transformOperation.cjs.map +0 -1
  1185. package/__cjs/link/utils/transformOperation.d.cts +0 -3
  1186. package/__cjs/link/utils/validateOperation.cjs +0 -20
  1187. package/__cjs/link/utils/validateOperation.cjs.map +0 -1
  1188. package/__cjs/link/utils/validateOperation.d.cts +0 -3
  1189. package/__cjs/link/ws/index.cjs +0 -22
  1190. package/__cjs/link/ws/index.cjs.map +0 -1
  1191. package/__cjs/link/ws/index.d.cts +0 -31
  1192. package/__cjs/local-state/LocalState.cjs +0 -527
  1193. package/__cjs/local-state/LocalState.cjs.map +0 -1
  1194. package/__cjs/local-state/LocalState.d.cts +0 -88
  1195. package/__cjs/local-state/index.cjs +0 -6
  1196. package/__cjs/local-state/index.cjs.map +0 -1
  1197. package/__cjs/local-state/index.d.cts +0 -2
  1198. package/__cjs/masking/GraphQLCodegenDataMasking.cjs +0 -3
  1199. package/__cjs/masking/GraphQLCodegenDataMasking.cjs.map +0 -1
  1200. package/__cjs/masking/GraphQLCodegenDataMasking.d.cts +0 -79
  1201. package/__cjs/masking/index.cjs +0 -10
  1202. package/__cjs/masking/index.cjs.map +0 -1
  1203. package/__cjs/masking/index.d.cts +0 -6
  1204. package/__cjs/masking/internal/types.cjs +0 -3
  1205. package/__cjs/masking/internal/types.cjs.map +0 -1
  1206. package/__cjs/masking/internal/types.d.cts +0 -121
  1207. package/__cjs/masking/maskDefinition.cjs +0 -139
  1208. package/__cjs/masking/maskDefinition.cjs.map +0 -1
  1209. package/__cjs/masking/maskDefinition.d.cts +0 -14
  1210. package/__cjs/masking/maskFragment.cjs +0 -42
  1211. package/__cjs/masking/maskFragment.cjs.map +0 -1
  1212. package/__cjs/masking/maskFragment.d.cts +0 -8
  1213. package/__cjs/masking/maskOperation.cjs +0 -28
  1214. package/__cjs/masking/maskOperation.cjs.map +0 -1
  1215. package/__cjs/masking/maskOperation.d.cts +0 -8
  1216. package/__cjs/masking/types.cjs +0 -3
  1217. package/__cjs/masking/types.cjs.map +0 -1
  1218. package/__cjs/masking/types.d.cts +0 -32
  1219. package/__cjs/masking/utils.cjs +0 -47
  1220. package/__cjs/masking/utils.cjs.map +0 -1
  1221. package/__cjs/masking/utils.d.cts +0 -14
  1222. package/__cjs/react/context/ApolloConsumer.cjs +0 -16
  1223. package/__cjs/react/context/ApolloConsumer.cjs.map +0 -1
  1224. package/__cjs/react/context/ApolloConsumer.d.cts +0 -10
  1225. package/__cjs/react/context/ApolloContext.cjs +0 -26
  1226. package/__cjs/react/context/ApolloContext.cjs.map +0 -1
  1227. package/__cjs/react/context/ApolloContext.d.cts +0 -9
  1228. package/__cjs/react/context/ApolloProvider.cjs +0 -21
  1229. package/__cjs/react/context/ApolloProvider.cjs.map +0 -1
  1230. package/__cjs/react/context/ApolloProvider.d.cts +0 -10
  1231. package/__cjs/react/hooks/constants.cjs +0 -5
  1232. package/__cjs/react/hooks/constants.cjs.map +0 -1
  1233. package/__cjs/react/hooks/constants.d.cts +0 -3
  1234. package/__cjs/react/hooks/internal/__use.cjs +0 -26
  1235. package/__cjs/react/hooks/internal/__use.cjs.map +0 -1
  1236. package/__cjs/react/hooks/internal/__use.d.cts +0 -4
  1237. package/__cjs/react/hooks/internal/index.cjs +0 -13
  1238. package/__cjs/react/hooks/internal/index.cjs.map +0 -1
  1239. package/__cjs/react/hooks/internal/index.d.cts +0 -5
  1240. package/__cjs/react/hooks/internal/useDeepMemo.cjs +0 -17
  1241. package/__cjs/react/hooks/internal/useDeepMemo.cjs.map +0 -1
  1242. package/__cjs/react/hooks/internal/useDeepMemo.d.cts +0 -3
  1243. package/__cjs/react/hooks/internal/useIsomorphicLayoutEffect.cjs +0 -13
  1244. package/__cjs/react/hooks/internal/useIsomorphicLayoutEffect.cjs.map +0 -1
  1245. package/__cjs/react/hooks/internal/useIsomorphicLayoutEffect.d.cts +0 -3
  1246. package/__cjs/react/hooks/internal/useRenderGuard.cjs +0 -46
  1247. package/__cjs/react/hooks/internal/useRenderGuard.cjs.map +0 -1
  1248. package/__cjs/react/hooks/internal/useRenderGuard.d.cts +0 -2
  1249. package/__cjs/react/hooks/internal/validateSuspenseHookOptions.cjs +0 -28
  1250. package/__cjs/react/hooks/internal/validateSuspenseHookOptions.cjs.map +0 -1
  1251. package/__cjs/react/hooks/internal/validateSuspenseHookOptions.d.cts +0 -3
  1252. package/__cjs/react/hooks/internal/wrapHook.cjs +0 -69
  1253. package/__cjs/react/hooks/internal/wrapHook.cjs.map +0 -1
  1254. package/__cjs/react/hooks/internal/wrapHook.d.cts +0 -66
  1255. package/__cjs/react/hooks/useApolloClient.cjs +0 -29
  1256. package/__cjs/react/hooks/useApolloClient.cjs.map +0 -1
  1257. package/__cjs/react/hooks/useApolloClient.d.cts +0 -18
  1258. package/__cjs/react/hooks/useBackgroundQuery.cjs +0 -84
  1259. package/__cjs/react/hooks/useBackgroundQuery.cjs.map +0 -1
  1260. package/__cjs/react/hooks/useBackgroundQuery.d.cts +0 -210
  1261. package/__cjs/react/hooks/useFragment.cjs +0 -101
  1262. package/__cjs/react/hooks/useFragment.cjs.map +0 -1
  1263. package/__cjs/react/hooks/useFragment.d.cts +0 -55
  1264. package/__cjs/react/hooks/useLazyQuery.cjs +0 -185
  1265. package/__cjs/react/hooks/useLazyQuery.cjs.map +0 -1
  1266. package/__cjs/react/hooks/useLazyQuery.d.cts +0 -280
  1267. package/__cjs/react/hooks/useLoadableQuery.cjs +0 -92
  1268. package/__cjs/react/hooks/useLoadableQuery.cjs.map +0 -1
  1269. package/__cjs/react/hooks/useLoadableQuery.d.cts +0 -175
  1270. package/__cjs/react/hooks/useMutation.cjs +0 -157
  1271. package/__cjs/react/hooks/useMutation.cjs.map +0 -1
  1272. package/__cjs/react/hooks/useMutation.d.cts +0 -280
  1273. package/__cjs/react/hooks/useQuery.cjs +0 -220
  1274. package/__cjs/react/hooks/useQuery.cjs.map +0 -1
  1275. package/__cjs/react/hooks/useQuery.d.cts +0 -265
  1276. package/__cjs/react/hooks/useQueryRefHandlers.cjs +0 -73
  1277. package/__cjs/react/hooks/useQueryRefHandlers.cjs.map +0 -1
  1278. package/__cjs/react/hooks/useQueryRefHandlers.d.cts +0 -44
  1279. package/__cjs/react/hooks/useReactiveVar.cjs +0 -37
  1280. package/__cjs/react/hooks/useReactiveVar.cjs.map +0 -1
  1281. package/__cjs/react/hooks/useReactiveVar.d.cts +0 -20
  1282. package/__cjs/react/hooks/useReadQuery.cjs +0 -47
  1283. package/__cjs/react/hooks/useReadQuery.cjs.map +0 -1
  1284. package/__cjs/react/hooks/useReadQuery.d.cts +0 -24
  1285. package/__cjs/react/hooks/useSubscription.cjs +0 -227
  1286. package/__cjs/react/hooks/useSubscription.cjs.map +0 -1
  1287. package/__cjs/react/hooks/useSubscription.d.cts +0 -178
  1288. package/__cjs/react/hooks/useSuspenseFragment.cjs +0 -51
  1289. package/__cjs/react/hooks/useSuspenseFragment.cjs.map +0 -1
  1290. package/__cjs/react/hooks/useSuspenseFragment.d.cts +0 -47
  1291. package/__cjs/react/hooks/useSuspenseQuery.cjs +0 -124
  1292. package/__cjs/react/hooks/useSuspenseQuery.cjs.map +0 -1
  1293. package/__cjs/react/hooks/useSuspenseQuery.d.cts +0 -204
  1294. package/__cjs/react/hooks/useSyncExternalStore.cjs +0 -134
  1295. package/__cjs/react/hooks/useSyncExternalStore.cjs.map +0 -1
  1296. package/__cjs/react/hooks/useSyncExternalStore.d.cts +0 -4
  1297. package/__cjs/react/index.cjs +0 -42
  1298. package/__cjs/react/index.cjs.map +0 -1
  1299. package/__cjs/react/index.d.cts +0 -25
  1300. package/__cjs/react/index.react-server.cjs +0 -48
  1301. package/__cjs/react/index.react-server.cjs.map +0 -1
  1302. package/__cjs/react/index.react-server.d.cts +0 -19
  1303. package/__cjs/react/internal/cache/FragmentReference.cjs +0 -135
  1304. package/__cjs/react/internal/cache/FragmentReference.cjs.map +0 -1
  1305. package/__cjs/react/internal/cache/FragmentReference.d.cts +0 -38
  1306. package/__cjs/react/internal/cache/QueryReference.cjs +0 -298
  1307. package/__cjs/react/internal/cache/QueryReference.cjs.map +0 -1
  1308. package/__cjs/react/internal/cache/QueryReference.d.cts +0 -105
  1309. package/__cjs/react/internal/cache/SuspenseCache.cjs +0 -44
  1310. package/__cjs/react/internal/cache/SuspenseCache.cjs.map +0 -1
  1311. package/__cjs/react/internal/cache/SuspenseCache.d.cts +0 -29
  1312. package/__cjs/react/internal/cache/getSuspenseCache.cjs +0 -12
  1313. package/__cjs/react/internal/cache/getSuspenseCache.cjs.map +0 -1
  1314. package/__cjs/react/internal/cache/getSuspenseCache.d.cts +0 -16
  1315. package/__cjs/react/internal/cache/types.cjs +0 -3
  1316. package/__cjs/react/internal/cache/types.cjs.map +0 -1
  1317. package/__cjs/react/internal/cache/types.d.cts +0 -18
  1318. package/__cjs/react/internal/index.cjs +0 -15
  1319. package/__cjs/react/internal/index.cjs.map +0 -1
  1320. package/__cjs/react/internal/index.d.cts +0 -9
  1321. package/__cjs/react/internal/types.cjs +0 -3
  1322. package/__cjs/react/internal/types.cjs.map +0 -1
  1323. package/__cjs/react/internal/types.d.cts +0 -4
  1324. package/__cjs/react/query-preloader/createQueryPreloader.cjs +0 -45
  1325. package/__cjs/react/query-preloader/createQueryPreloader.cjs.map +0 -1
  1326. package/__cjs/react/query-preloader/createQueryPreloader.d.cts +0 -247
  1327. package/__cjs/react/ssr/getDataFromTree.cjs +0 -43
  1328. package/__cjs/react/ssr/getDataFromTree.cjs.map +0 -1
  1329. package/__cjs/react/ssr/getDataFromTree.d.cts +0 -25
  1330. package/__cjs/react/ssr/index.cjs +0 -11
  1331. package/__cjs/react/ssr/index.cjs.map +0 -1
  1332. package/__cjs/react/ssr/index.d.cts +0 -4
  1333. package/__cjs/react/ssr/prerenderStatic.cjs +0 -158
  1334. package/__cjs/react/ssr/prerenderStatic.cjs.map +0 -1
  1335. package/__cjs/react/ssr/prerenderStatic.d.cts +0 -122
  1336. package/__cjs/react/ssr/renderToStringWithData.cjs +0 -18
  1337. package/__cjs/react/ssr/renderToStringWithData.cjs.map +0 -1
  1338. package/__cjs/react/ssr/renderToStringWithData.d.cts +0 -8
  1339. package/__cjs/react/ssr/useSSRQuery.cjs +0 -70
  1340. package/__cjs/react/ssr/useSSRQuery.cjs.map +0 -1
  1341. package/__cjs/react/ssr/useSSRQuery.d.cts +0 -5
  1342. package/__cjs/react/types/deprecated.cjs +0 -3
  1343. package/__cjs/react/types/deprecated.cjs.map +0 -1
  1344. package/__cjs/react/types/deprecated.d.cts +0 -75
  1345. package/__cjs/react/types/types.documentation.cjs +0 -3
  1346. package/__cjs/react/types/types.documentation.cjs.map +0 -1
  1347. package/__cjs/react/types/types.documentation.d.cts +0 -534
  1348. package/__cjs/testing/core/mocking/mockLink.cjs +0 -193
  1349. package/__cjs/testing/core/mocking/mockLink.cjs.map +0 -1
  1350. package/__cjs/testing/core/mocking/mockLink.d.cts +0 -64
  1351. package/__cjs/testing/core/mocking/mockSubscriptionLink.cjs +0 -56
  1352. package/__cjs/testing/core/mocking/mockSubscriptionLink.cjs.map +0 -1
  1353. package/__cjs/testing/core/mocking/mockSubscriptionLink.d.cts +0 -23
  1354. package/__cjs/testing/core/types/deprecated.cjs +0 -3
  1355. package/__cjs/testing/core/types/deprecated.cjs.map +0 -1
  1356. package/__cjs/testing/core/types/deprecated.d.cts +0 -10
  1357. package/__cjs/testing/index.cjs +0 -9
  1358. package/__cjs/testing/index.cjs.map +0 -1
  1359. package/__cjs/testing/index.d.cts +0 -4
  1360. package/__cjs/testing/react/MockedProvider.cjs +0 -43
  1361. package/__cjs/testing/react/MockedProvider.cjs.map +0 -1
  1362. package/__cjs/testing/react/MockedProvider.d.cts +0 -33
  1363. package/__cjs/testing/react/index.cjs +0 -6
  1364. package/__cjs/testing/react/index.cjs.map +0 -1
  1365. package/__cjs/testing/react/index.d.cts +0 -3
  1366. package/__cjs/utilities/DeepPartial.cjs +0 -7
  1367. package/__cjs/utilities/DeepPartial.cjs.map +0 -1
  1368. package/__cjs/utilities/DeepPartial.d.cts +0 -15
  1369. package/__cjs/utilities/HKT.cjs +0 -3
  1370. package/__cjs/utilities/HKT.cjs.map +0 -1
  1371. package/__cjs/utilities/HKT.d.cts +0 -35
  1372. package/__cjs/utilities/caching/index.cjs +0 -6
  1373. package/__cjs/utilities/caching/index.cjs.map +0 -1
  1374. package/__cjs/utilities/caching/index.d.cts +0 -3
  1375. package/__cjs/utilities/caching/sizes.cjs +0 -29
  1376. package/__cjs/utilities/caching/sizes.cjs.map +0 -1
  1377. package/__cjs/utilities/caching/sizes.d.cts +0 -299
  1378. package/__cjs/utilities/common/stripTypename.cjs +0 -14
  1379. package/__cjs/utilities/common/stripTypename.cjs.map +0 -1
  1380. package/__cjs/utilities/common/stripTypename.d.cts +0 -8
  1381. package/__cjs/utilities/environment/index.cjs +0 -5
  1382. package/__cjs/utilities/environment/index.cjs.map +0 -1
  1383. package/__cjs/utilities/environment/index.d.cts +0 -2
  1384. package/__cjs/utilities/environment/index.development.cjs +0 -5
  1385. package/__cjs/utilities/environment/index.development.cjs.map +0 -1
  1386. package/__cjs/utilities/environment/index.development.d.cts +0 -2
  1387. package/__cjs/utilities/environment/index.production.cjs +0 -5
  1388. package/__cjs/utilities/environment/index.production.cjs.map +0 -1
  1389. package/__cjs/utilities/environment/index.production.d.cts +0 -2
  1390. package/__cjs/utilities/graphql/DocumentTransform.cjs +0 -107
  1391. package/__cjs/utilities/graphql/DocumentTransform.cjs.map +0 -1
  1392. package/__cjs/utilities/graphql/DocumentTransform.d.cts +0 -54
  1393. package/__cjs/utilities/graphql/isFormattedExecutionResult.cjs +0 -9
  1394. package/__cjs/utilities/graphql/isFormattedExecutionResult.cjs.map +0 -1
  1395. package/__cjs/utilities/graphql/isFormattedExecutionResult.d.cts +0 -3
  1396. package/__cjs/utilities/graphql/operations.cjs +0 -40
  1397. package/__cjs/utilities/graphql/operations.cjs.map +0 -1
  1398. package/__cjs/utilities/graphql/operations.d.cts +0 -26
  1399. package/__cjs/utilities/graphql/print.cjs +0 -33
  1400. package/__cjs/utilities/graphql/print.cjs.map +0 -1
  1401. package/__cjs/utilities/graphql/print.d.cts +0 -13
  1402. package/__cjs/utilities/graphql/storeUtils.cjs +0 -12
  1403. package/__cjs/utilities/graphql/storeUtils.cjs.map +0 -1
  1404. package/__cjs/utilities/graphql/storeUtils.d.cts +0 -43
  1405. package/__cjs/utilities/graphql/transform.cjs +0 -63
  1406. package/__cjs/utilities/graphql/transform.cjs.map +0 -1
  1407. package/__cjs/utilities/graphql/transform.d.cts +0 -10
  1408. package/__cjs/utilities/index.cjs +0 -30
  1409. package/__cjs/utilities/index.cjs.map +0 -1
  1410. package/__cjs/utilities/index.d.cts +0 -17
  1411. package/__cjs/utilities/internal/DeepMerger.cjs +0 -67
  1412. package/__cjs/utilities/internal/DeepMerger.cjs.map +0 -1
  1413. package/__cjs/utilities/internal/DeepMerger.d.cts +0 -17
  1414. package/__cjs/utilities/internal/argumentsObjectFromField.cjs +0 -18
  1415. package/__cjs/utilities/internal/argumentsObjectFromField.cjs.map +0 -1
  1416. package/__cjs/utilities/internal/argumentsObjectFromField.d.cts +0 -8
  1417. package/__cjs/utilities/internal/caches.cjs +0 -76
  1418. package/__cjs/utilities/internal/caches.cjs.map +0 -1
  1419. package/__cjs/utilities/internal/caches.d.cts +0 -42
  1420. package/__cjs/utilities/internal/canUseDOM.cjs +0 -11
  1421. package/__cjs/utilities/internal/canUseDOM.cjs.map +0 -1
  1422. package/__cjs/utilities/internal/canUseDOM.d.cts +0 -7
  1423. package/__cjs/utilities/internal/checkDocument.cjs +0 -69
  1424. package/__cjs/utilities/internal/checkDocument.cjs.map +0 -1
  1425. package/__cjs/utilities/internal/checkDocument.d.cts +0 -10
  1426. package/__cjs/utilities/internal/cloneDeep.cjs +0 -45
  1427. package/__cjs/utilities/internal/cloneDeep.cjs.map +0 -1
  1428. package/__cjs/utilities/internal/cloneDeep.d.cts +0 -9
  1429. package/__cjs/utilities/internal/compact.cjs +0 -26
  1430. package/__cjs/utilities/internal/compact.cjs.map +0 -1
  1431. package/__cjs/utilities/internal/compact.d.cts +0 -11
  1432. package/__cjs/utilities/internal/createFragmentMap.cjs +0 -19
  1433. package/__cjs/utilities/internal/createFragmentMap.cjs.map +0 -1
  1434. package/__cjs/utilities/internal/createFragmentMap.d.cts +0 -12
  1435. package/__cjs/utilities/internal/createFulfilledPromise.cjs +0 -15
  1436. package/__cjs/utilities/internal/createFulfilledPromise.cjs.map +0 -1
  1437. package/__cjs/utilities/internal/createFulfilledPromise.d.cts +0 -8
  1438. package/__cjs/utilities/internal/createRejectedPromise.cjs +0 -17
  1439. package/__cjs/utilities/internal/createRejectedPromise.cjs.map +0 -1
  1440. package/__cjs/utilities/internal/createRejectedPromise.d.cts +0 -8
  1441. package/__cjs/utilities/internal/dealias.cjs +0 -21
  1442. package/__cjs/utilities/internal/dealias.cjs.map +0 -1
  1443. package/__cjs/utilities/internal/dealias.d.cts +0 -5
  1444. package/__cjs/utilities/internal/decoratePromise.cjs +0 -33
  1445. package/__cjs/utilities/internal/decoratePromise.cjs.map +0 -1
  1446. package/__cjs/utilities/internal/decoratePromise.d.cts +0 -8
  1447. package/__cjs/utilities/internal/deepFreeze.cjs +0 -39
  1448. package/__cjs/utilities/internal/deepFreeze.cjs.map +0 -1
  1449. package/__cjs/utilities/internal/deepFreeze.d.cts +0 -7
  1450. package/__cjs/utilities/internal/filterMap.cjs +0 -31
  1451. package/__cjs/utilities/internal/filterMap.cjs.map +0 -1
  1452. package/__cjs/utilities/internal/filterMap.d.cts +0 -4
  1453. package/__cjs/utilities/internal/getDefaultValues.cjs +0 -22
  1454. package/__cjs/utilities/internal/getDefaultValues.cjs.map +0 -1
  1455. package/__cjs/utilities/internal/getDefaultValues.d.cts +0 -8
  1456. package/__cjs/utilities/internal/getFragmentDefinition.cjs +0 -17
  1457. package/__cjs/utilities/internal/getFragmentDefinition.cjs.map +0 -1
  1458. package/__cjs/utilities/internal/getFragmentDefinition.d.cts +0 -8
  1459. package/__cjs/utilities/internal/getFragmentDefinitions.cjs +0 -12
  1460. package/__cjs/utilities/internal/getFragmentDefinitions.cjs.map +0 -1
  1461. package/__cjs/utilities/internal/getFragmentDefinitions.d.cts +0 -8
  1462. package/__cjs/utilities/internal/getFragmentFromSelection.cjs +0 -27
  1463. package/__cjs/utilities/internal/getFragmentFromSelection.cjs.map +0 -1
  1464. package/__cjs/utilities/internal/getFragmentFromSelection.d.cts +0 -10
  1465. package/__cjs/utilities/internal/getFragmentQueryDocument.cjs +0 -86
  1466. package/__cjs/utilities/internal/getFragmentQueryDocument.cjs.map +0 -1
  1467. package/__cjs/utilities/internal/getFragmentQueryDocument.d.cts +0 -29
  1468. package/__cjs/utilities/internal/getGraphQLErrorsFromResult.cjs +0 -12
  1469. package/__cjs/utilities/internal/getGraphQLErrorsFromResult.cjs.map +0 -1
  1470. package/__cjs/utilities/internal/getGraphQLErrorsFromResult.d.cts +0 -10
  1471. package/__cjs/utilities/internal/getMainDefinition.cjs +0 -38
  1472. package/__cjs/utilities/internal/getMainDefinition.cjs.map +0 -1
  1473. package/__cjs/utilities/internal/getMainDefinition.d.cts +0 -12
  1474. package/__cjs/utilities/internal/getMemoryInternals.cjs +0 -132
  1475. package/__cjs/utilities/internal/getMemoryInternals.cjs.map +0 -1
  1476. package/__cjs/utilities/internal/getMemoryInternals.d.cts +0 -80
  1477. package/__cjs/utilities/internal/getOperationDefinition.cjs +0 -14
  1478. package/__cjs/utilities/internal/getOperationDefinition.cjs.map +0 -1
  1479. package/__cjs/utilities/internal/getOperationDefinition.d.cts +0 -8
  1480. package/__cjs/utilities/internal/getOperationName.cjs +0 -12
  1481. package/__cjs/utilities/internal/getOperationName.cjs.map +0 -1
  1482. package/__cjs/utilities/internal/getOperationName.d.cts +0 -8
  1483. package/__cjs/utilities/internal/getQueryDefinition.cjs +0 -16
  1484. package/__cjs/utilities/internal/getQueryDefinition.cjs.map +0 -1
  1485. package/__cjs/utilities/internal/getQueryDefinition.d.cts +0 -8
  1486. package/__cjs/utilities/internal/getStoreKeyName.cjs +0 -73
  1487. package/__cjs/utilities/internal/getStoreKeyName.cjs.map +0 -1
  1488. package/__cjs/utilities/internal/getStoreKeyName.d.cts +0 -16
  1489. package/__cjs/utilities/internal/globals/global.cjs +0 -17
  1490. package/__cjs/utilities/internal/globals/global.cjs.map +0 -1
  1491. package/__cjs/utilities/internal/globals/global.d.cts +0 -3
  1492. package/__cjs/utilities/internal/globals/index.cjs +0 -9
  1493. package/__cjs/utilities/internal/globals/index.cjs.map +0 -1
  1494. package/__cjs/utilities/internal/globals/index.d.cts +0 -3
  1495. package/__cjs/utilities/internal/globals/maybe.cjs +0 -10
  1496. package/__cjs/utilities/internal/globals/maybe.cjs.map +0 -1
  1497. package/__cjs/utilities/internal/globals/maybe.d.cts +0 -2
  1498. package/__cjs/utilities/internal/graphQLResultHasError.cjs +0 -12
  1499. package/__cjs/utilities/internal/graphQLResultHasError.cjs.map +0 -1
  1500. package/__cjs/utilities/internal/graphQLResultHasError.d.cts +0 -8
  1501. package/__cjs/utilities/internal/hasDirectives.cjs +0 -24
  1502. package/__cjs/utilities/internal/hasDirectives.cjs.map +0 -1
  1503. package/__cjs/utilities/internal/hasDirectives.d.cts +0 -8
  1504. package/__cjs/utilities/internal/hasForcedResolvers.cjs +0 -23
  1505. package/__cjs/utilities/internal/hasForcedResolvers.cjs.map +0 -1
  1506. package/__cjs/utilities/internal/hasForcedResolvers.d.cts +0 -3
  1507. package/__cjs/utilities/internal/index.cjs +0 -105
  1508. package/__cjs/utilities/internal/index.cjs.map +0 -1
  1509. package/__cjs/utilities/internal/index.d.cts +0 -64
  1510. package/__cjs/utilities/internal/index.production.cjs +0 -11
  1511. package/__cjs/utilities/internal/index.production.cjs.map +0 -1
  1512. package/__cjs/utilities/internal/index.production.d.cts +0 -3
  1513. package/__cjs/utilities/internal/isArray.cjs +0 -12
  1514. package/__cjs/utilities/internal/isArray.cjs.map +0 -1
  1515. package/__cjs/utilities/internal/isArray.d.cts +0 -9
  1516. package/__cjs/utilities/internal/isDocumentNode.cjs +0 -15
  1517. package/__cjs/utilities/internal/isDocumentNode.cjs.map +0 -1
  1518. package/__cjs/utilities/internal/isDocumentNode.d.cts +0 -8
  1519. package/__cjs/utilities/internal/isField.cjs +0 -12
  1520. package/__cjs/utilities/internal/isField.cjs.map +0 -1
  1521. package/__cjs/utilities/internal/isField.d.cts +0 -8
  1522. package/__cjs/utilities/internal/isNonEmptyArray.cjs +0 -12
  1523. package/__cjs/utilities/internal/isNonEmptyArray.cjs.map +0 -1
  1524. package/__cjs/utilities/internal/isNonEmptyArray.d.cts +0 -7
  1525. package/__cjs/utilities/internal/isNonNullObject.cjs +0 -12
  1526. package/__cjs/utilities/internal/isNonNullObject.cjs.map +0 -1
  1527. package/__cjs/utilities/internal/isNonNullObject.d.cts +0 -7
  1528. package/__cjs/utilities/internal/isPlainObject.cjs +0 -15
  1529. package/__cjs/utilities/internal/isPlainObject.cjs.map +0 -1
  1530. package/__cjs/utilities/internal/isPlainObject.d.cts +0 -7
  1531. package/__cjs/utilities/internal/makeReference.cjs +0 -12
  1532. package/__cjs/utilities/internal/makeReference.cjs.map +0 -1
  1533. package/__cjs/utilities/internal/makeReference.d.cts +0 -8
  1534. package/__cjs/utilities/internal/makeUniqueId.cjs +0 -18
  1535. package/__cjs/utilities/internal/makeUniqueId.cjs.map +0 -1
  1536. package/__cjs/utilities/internal/makeUniqueId.d.cts +0 -10
  1537. package/__cjs/utilities/internal/maybeDeepFreeze.cjs +0 -17
  1538. package/__cjs/utilities/internal/maybeDeepFreeze.cjs.map +0 -1
  1539. package/__cjs/utilities/internal/maybeDeepFreeze.d.cts +0 -7
  1540. package/__cjs/utilities/internal/mergeDeep.cjs +0 -26
  1541. package/__cjs/utilities/internal/mergeDeep.cjs.map +0 -1
  1542. package/__cjs/utilities/internal/mergeDeep.d.cts +0 -8
  1543. package/__cjs/utilities/internal/mergeDeepArray.cjs +0 -27
  1544. package/__cjs/utilities/internal/mergeDeepArray.cjs.map +0 -1
  1545. package/__cjs/utilities/internal/mergeDeepArray.d.cts +0 -7
  1546. package/__cjs/utilities/internal/mergeOptions.cjs +0 -18
  1547. package/__cjs/utilities/internal/mergeOptions.cjs.map +0 -1
  1548. package/__cjs/utilities/internal/mergeOptions.d.cts +0 -10
  1549. package/__cjs/utilities/internal/omitDeep.cjs +0 -48
  1550. package/__cjs/utilities/internal/omitDeep.cjs.map +0 -1
  1551. package/__cjs/utilities/internal/omitDeep.d.cts +0 -8
  1552. package/__cjs/utilities/internal/preventUnhandledRejection.cjs +0 -8
  1553. package/__cjs/utilities/internal/preventUnhandledRejection.cjs.map +0 -1
  1554. package/__cjs/utilities/internal/preventUnhandledRejection.d.cts +0 -2
  1555. package/__cjs/utilities/internal/removeDirectivesFromDocument.cjs +0 -306
  1556. package/__cjs/utilities/internal/removeDirectivesFromDocument.cjs.map +0 -1
  1557. package/__cjs/utilities/internal/removeDirectivesFromDocument.d.cts +0 -14
  1558. package/__cjs/utilities/internal/resultKeyNameFromField.cjs +0 -12
  1559. package/__cjs/utilities/internal/resultKeyNameFromField.cjs.map +0 -1
  1560. package/__cjs/utilities/internal/resultKeyNameFromField.d.cts +0 -8
  1561. package/__cjs/utilities/internal/shouldInclude.cjs +0 -50
  1562. package/__cjs/utilities/internal/shouldInclude.cjs.map +0 -1
  1563. package/__cjs/utilities/internal/shouldInclude.d.cts +0 -8
  1564. package/__cjs/utilities/internal/storeKeyNameFromField.cjs +0 -29
  1565. package/__cjs/utilities/internal/storeKeyNameFromField.cjs.map +0 -1
  1566. package/__cjs/utilities/internal/storeKeyNameFromField.d.cts +0 -8
  1567. package/__cjs/utilities/internal/stringifyForDisplay.cjs +0 -18
  1568. package/__cjs/utilities/internal/stringifyForDisplay.cjs.map +0 -1
  1569. package/__cjs/utilities/internal/stringifyForDisplay.d.cts +0 -7
  1570. package/__cjs/utilities/internal/toQueryResult.cjs +0 -18
  1571. package/__cjs/utilities/internal/toQueryResult.cjs.map +0 -1
  1572. package/__cjs/utilities/internal/toQueryResult.d.cts +0 -8
  1573. package/__cjs/utilities/internal/types/ApplyHKT.cjs +0 -3
  1574. package/__cjs/utilities/internal/types/ApplyHKT.cjs.map +0 -1
  1575. package/__cjs/utilities/internal/types/ApplyHKT.d.cts +0 -13
  1576. package/__cjs/utilities/internal/types/ApplyHKTImplementationWithDefault.cjs +0 -3
  1577. package/__cjs/utilities/internal/types/ApplyHKTImplementationWithDefault.cjs.map +0 -1
  1578. package/__cjs/utilities/internal/types/ApplyHKTImplementationWithDefault.d.cts +0 -11
  1579. package/__cjs/utilities/internal/types/DecoratedPromise.cjs +0 -3
  1580. package/__cjs/utilities/internal/types/DecoratedPromise.cjs.map +0 -1
  1581. package/__cjs/utilities/internal/types/DecoratedPromise.d.cts +0 -10
  1582. package/__cjs/utilities/internal/types/DeepOmit.cjs +0 -3
  1583. package/__cjs/utilities/internal/types/DeepOmit.cjs.map +0 -1
  1584. package/__cjs/utilities/internal/types/DeepOmit.d.cts +0 -15
  1585. package/__cjs/utilities/internal/types/FragmentMap.cjs +0 -3
  1586. package/__cjs/utilities/internal/types/FragmentMap.cjs.map +0 -1
  1587. package/__cjs/utilities/internal/types/FragmentMap.d.cts +0 -12
  1588. package/__cjs/utilities/internal/types/FragmentMapFunction.cjs +0 -3
  1589. package/__cjs/utilities/internal/types/FragmentMapFunction.cjs.map +0 -1
  1590. package/__cjs/utilities/internal/types/FragmentMapFunction.d.cts +0 -8
  1591. package/__cjs/utilities/internal/types/FulfilledPromise.cjs +0 -3
  1592. package/__cjs/utilities/internal/types/FulfilledPromise.cjs.map +0 -1
  1593. package/__cjs/utilities/internal/types/FulfilledPromise.d.cts +0 -10
  1594. package/__cjs/utilities/internal/types/IsAny.cjs +0 -3
  1595. package/__cjs/utilities/internal/types/IsAny.cjs.map +0 -1
  1596. package/__cjs/utilities/internal/types/IsAny.d.cts +0 -7
  1597. package/__cjs/utilities/internal/types/NoInfer.cjs +0 -3
  1598. package/__cjs/utilities/internal/types/NoInfer.cjs.map +0 -1
  1599. package/__cjs/utilities/internal/types/NoInfer.d.cts +0 -29
  1600. package/__cjs/utilities/internal/types/PendingPromise.cjs +0 -3
  1601. package/__cjs/utilities/internal/types/PendingPromise.cjs.map +0 -1
  1602. package/__cjs/utilities/internal/types/PendingPromise.d.cts +0 -9
  1603. package/__cjs/utilities/internal/types/Prettify.cjs +0 -3
  1604. package/__cjs/utilities/internal/types/Prettify.cjs.map +0 -1
  1605. package/__cjs/utilities/internal/types/Prettify.d.cts +0 -9
  1606. package/__cjs/utilities/internal/types/Primitive.cjs +0 -3
  1607. package/__cjs/utilities/internal/types/Primitive.cjs.map +0 -1
  1608. package/__cjs/utilities/internal/types/Primitive.d.cts +0 -7
  1609. package/__cjs/utilities/internal/types/RejectedPromise.cjs +0 -3
  1610. package/__cjs/utilities/internal/types/RejectedPromise.cjs.map +0 -1
  1611. package/__cjs/utilities/internal/types/RejectedPromise.d.cts +0 -10
  1612. package/__cjs/utilities/internal/types/RemoveIndexSignature.cjs +0 -3
  1613. package/__cjs/utilities/internal/types/RemoveIndexSignature.cjs.map +0 -1
  1614. package/__cjs/utilities/internal/types/RemoveIndexSignature.d.cts +0 -9
  1615. package/__cjs/utilities/internal/types/TupleToIntersection.cjs +0 -3
  1616. package/__cjs/utilities/internal/types/TupleToIntersection.cjs.map +0 -1
  1617. package/__cjs/utilities/internal/types/TupleToIntersection.d.cts +0 -2
  1618. package/__cjs/utilities/internal/types/VariablesOption.cjs +0 -3
  1619. package/__cjs/utilities/internal/types/VariablesOption.cjs.map +0 -1
  1620. package/__cjs/utilities/internal/types/VariablesOption.d.cts +0 -30
  1621. package/__cjs/utilities/internal/valueToObjectRepresentation.cjs +0 -44
  1622. package/__cjs/utilities/internal/valueToObjectRepresentation.cjs.map +0 -1
  1623. package/__cjs/utilities/internal/valueToObjectRepresentation.d.cts +0 -8
  1624. package/__cjs/utilities/invariant/index.cjs +0 -97
  1625. package/__cjs/utilities/invariant/index.cjs.map +0 -1
  1626. package/__cjs/utilities/invariant/index.d.cts +0 -47
  1627. package/__cjs/utilities/invariant/index.development.cjs +0 -16
  1628. package/__cjs/utilities/invariant/index.development.cjs.map +0 -1
  1629. package/__cjs/utilities/invariant/index.development.d.cts +0 -4
  1630. package/__cjs/utilities/policies/pagination.cjs +0 -238
  1631. package/__cjs/utilities/policies/pagination.cjs.map +0 -1
  1632. package/__cjs/utilities/policies/pagination.d.cts +0 -51
  1633. package/__cjs/utilities/shared/canonicalStringify.cjs +0 -91
  1634. package/__cjs/utilities/shared/canonicalStringify.cjs.map +0 -1
  1635. package/__cjs/utilities/shared/canonicalStringify.d.cts +0 -21
  1636. package/__cjs/utilities/subscriptions/relay/index.cjs +0 -55
  1637. package/__cjs/utilities/subscriptions/relay/index.cjs.map +0 -1
  1638. package/__cjs/utilities/subscriptions/relay/index.d.cts +0 -10
  1639. package/__cjs/version.cjs +0 -6
  1640. package/__cjs/version.cjs.map +0 -1
  1641. package/__cjs/version.d.cts +0 -3
  1642. package/dev/symbol.d.ts +0 -10
  1643. package/dev/symbol.js +0 -4
  1644. package/dev/symbol.js.map +0 -1
  1645. package/errors/CombinedGraphQLErrors.d.ts +0 -37
  1646. package/errors/CombinedGraphQLErrors.js +0 -48
  1647. package/errors/CombinedGraphQLErrors.js.map +0 -1
  1648. package/errors/CombinedProtocolErrors.d.ts +0 -20
  1649. package/errors/CombinedProtocolErrors.js +0 -27
  1650. package/errors/CombinedProtocolErrors.js.map +0 -1
  1651. package/errors/LinkError.d.ts +0 -18
  1652. package/errors/LinkError.js +0 -20
  1653. package/errors/LinkError.js.map +0 -1
  1654. package/errors/LocalStateError.d.ts +0 -20
  1655. package/errors/LocalStateError.js +0 -23
  1656. package/errors/LocalStateError.js.map +0 -1
  1657. package/errors/ServerError.d.ts +0 -27
  1658. package/errors/ServerError.js +0 -32
  1659. package/errors/ServerError.js.map +0 -1
  1660. package/errors/ServerParseError.d.ts +0 -26
  1661. package/errors/ServerParseError.js +0 -34
  1662. package/errors/ServerParseError.js.map +0 -1
  1663. package/errors/UnconventionalError.d.ts +0 -11
  1664. package/errors/UnconventionalError.js +0 -19
  1665. package/errors/UnconventionalError.js.map +0 -1
  1666. package/errors/isErrorLike.d.ts +0 -3
  1667. package/errors/isErrorLike.js +0 -9
  1668. package/errors/isErrorLike.js.map +0 -1
  1669. package/errors/utils.d.ts +0 -3
  1670. package/errors/utils.js +0 -14
  1671. package/errors/utils.js.map +0 -1
  1672. package/incremental/handlers/defer20220824.d.ts +0 -55
  1673. package/incremental/handlers/defer20220824.js +0 -97
  1674. package/incremental/handlers/defer20220824.js.map +0 -1
  1675. package/incremental/handlers/notImplemented.d.ts +0 -9
  1676. package/incremental/handlers/notImplemented.js +0 -15
  1677. package/incremental/handlers/notImplemented.js.map +0 -1
  1678. package/incremental/index.d.ts +0 -4
  1679. package/incremental/index.js +0 -3
  1680. package/incremental/index.js.map +0 -1
  1681. package/incremental/types.d.ts +0 -24
  1682. package/incremental/types.js +0 -2
  1683. package/incremental/types.js.map +0 -1
  1684. package/legacyEntryPoints/apollo-client.cjs +0 -1
  1685. package/legacyEntryPoints/apollo-client.d.cts +0 -1
  1686. package/legacyEntryPoints/cache/cache.cjs +0 -1
  1687. package/legacyEntryPoints/cache/cache.d.cts +0 -1
  1688. package/legacyEntryPoints/cache/index.d.ts +0 -1
  1689. package/legacyEntryPoints/cache/index.js +0 -1
  1690. package/legacyEntryPoints/core/core.cjs +0 -1
  1691. package/legacyEntryPoints/core/core.d.cts +0 -1
  1692. package/legacyEntryPoints/core/index.d.ts +0 -1
  1693. package/legacyEntryPoints/core/index.js +0 -1
  1694. package/legacyEntryPoints/dev/dev.cjs +0 -1
  1695. package/legacyEntryPoints/dev/dev.d.cts +0 -1
  1696. package/legacyEntryPoints/dev/index.d.ts +0 -1
  1697. package/legacyEntryPoints/dev/index.js +0 -1
  1698. package/legacyEntryPoints/errors/errors.cjs +0 -1
  1699. package/legacyEntryPoints/errors/errors.d.cts +0 -1
  1700. package/legacyEntryPoints/errors/index.d.ts +0 -1
  1701. package/legacyEntryPoints/errors/index.js +0 -1
  1702. package/legacyEntryPoints/incremental/incremental.cjs +0 -1
  1703. package/legacyEntryPoints/incremental/incremental.d.cts +0 -1
  1704. package/legacyEntryPoints/incremental/index.d.ts +0 -1
  1705. package/legacyEntryPoints/incremental/index.js +0 -1
  1706. package/legacyEntryPoints/index.d.ts +0 -1
  1707. package/legacyEntryPoints/index.js +0 -1
  1708. package/legacyEntryPoints/link/batch/batch.cjs +0 -1
  1709. package/legacyEntryPoints/link/batch/batch.d.cts +0 -1
  1710. package/legacyEntryPoints/link/batch/index.d.ts +0 -1
  1711. package/legacyEntryPoints/link/batch/index.js +0 -1
  1712. package/legacyEntryPoints/link/batch-http/batch-http.cjs +0 -1
  1713. package/legacyEntryPoints/link/batch-http/batch-http.d.cts +0 -1
  1714. package/legacyEntryPoints/link/batch-http/index.d.ts +0 -1
  1715. package/legacyEntryPoints/link/batch-http/index.js +0 -1
  1716. package/legacyEntryPoints/link/client-awareness/client-awareness.cjs +0 -1
  1717. package/legacyEntryPoints/link/client-awareness/client-awareness.d.cts +0 -1
  1718. package/legacyEntryPoints/link/client-awareness/index.d.ts +0 -1
  1719. package/legacyEntryPoints/link/client-awareness/index.js +0 -1
  1720. package/legacyEntryPoints/link/context/context.cjs +0 -1
  1721. package/legacyEntryPoints/link/context/context.d.cts +0 -1
  1722. package/legacyEntryPoints/link/context/index.d.ts +0 -1
  1723. package/legacyEntryPoints/link/context/index.js +0 -1
  1724. package/legacyEntryPoints/link/error/error.cjs +0 -1
  1725. package/legacyEntryPoints/link/error/error.d.cts +0 -1
  1726. package/legacyEntryPoints/link/error/index.d.ts +0 -1
  1727. package/legacyEntryPoints/link/error/index.js +0 -1
  1728. package/legacyEntryPoints/link/http/http.cjs +0 -1
  1729. package/legacyEntryPoints/link/http/http.d.cts +0 -1
  1730. package/legacyEntryPoints/link/http/index.d.ts +0 -1
  1731. package/legacyEntryPoints/link/http/index.js +0 -1
  1732. package/legacyEntryPoints/link/index.d.ts +0 -1
  1733. package/legacyEntryPoints/link/index.js +0 -1
  1734. package/legacyEntryPoints/link/link.cjs +0 -1
  1735. package/legacyEntryPoints/link/link.d.cts +0 -1
  1736. package/legacyEntryPoints/link/persisted-queries/index.d.ts +0 -1
  1737. package/legacyEntryPoints/link/persisted-queries/index.js +0 -1
  1738. package/legacyEntryPoints/link/persisted-queries/persisted-queries.cjs +0 -1
  1739. package/legacyEntryPoints/link/persisted-queries/persisted-queries.d.cts +0 -1
  1740. package/legacyEntryPoints/link/remove-typename/index.d.ts +0 -1
  1741. package/legacyEntryPoints/link/remove-typename/index.js +0 -1
  1742. package/legacyEntryPoints/link/remove-typename/remove-typename.cjs +0 -1
  1743. package/legacyEntryPoints/link/remove-typename/remove-typename.d.cts +0 -1
  1744. package/legacyEntryPoints/link/retry/index.d.ts +0 -1
  1745. package/legacyEntryPoints/link/retry/index.js +0 -1
  1746. package/legacyEntryPoints/link/retry/retry.cjs +0 -1
  1747. package/legacyEntryPoints/link/retry/retry.d.cts +0 -1
  1748. package/legacyEntryPoints/link/schema/index.d.ts +0 -1
  1749. package/legacyEntryPoints/link/schema/index.js +0 -1
  1750. package/legacyEntryPoints/link/schema/schema.cjs +0 -1
  1751. package/legacyEntryPoints/link/schema/schema.d.cts +0 -1
  1752. package/legacyEntryPoints/link/subscriptions/index.d.ts +0 -1
  1753. package/legacyEntryPoints/link/subscriptions/index.js +0 -1
  1754. package/legacyEntryPoints/link/subscriptions/subscriptions.cjs +0 -1
  1755. package/legacyEntryPoints/link/subscriptions/subscriptions.d.cts +0 -1
  1756. package/legacyEntryPoints/link/utils/index.d.ts +0 -1
  1757. package/legacyEntryPoints/link/utils/index.js +0 -1
  1758. package/legacyEntryPoints/link/utils/utils.cjs +0 -1
  1759. package/legacyEntryPoints/link/utils/utils.d.cts +0 -1
  1760. package/legacyEntryPoints/link/ws/index.d.ts +0 -1
  1761. package/legacyEntryPoints/link/ws/index.js +0 -1
  1762. package/legacyEntryPoints/link/ws/ws.cjs +0 -1
  1763. package/legacyEntryPoints/link/ws/ws.d.cts +0 -1
  1764. package/legacyEntryPoints/local-state/index.d.ts +0 -1
  1765. package/legacyEntryPoints/local-state/index.js +0 -1
  1766. package/legacyEntryPoints/local-state/local-state.cjs +0 -1
  1767. package/legacyEntryPoints/local-state/local-state.d.cts +0 -1
  1768. package/legacyEntryPoints/main.cjs +0 -1
  1769. package/legacyEntryPoints/main.d.cts +0 -1
  1770. package/legacyEntryPoints/masking/index.d.ts +0 -1
  1771. package/legacyEntryPoints/masking/index.js +0 -1
  1772. package/legacyEntryPoints/masking/masking.cjs +0 -1
  1773. package/legacyEntryPoints/masking/masking.d.cts +0 -1
  1774. package/legacyEntryPoints/react/index.d.ts +0 -1
  1775. package/legacyEntryPoints/react/index.js +0 -1
  1776. package/legacyEntryPoints/react/internal/index.d.ts +0 -1
  1777. package/legacyEntryPoints/react/internal/index.js +0 -1
  1778. package/legacyEntryPoints/react/internal/internal.cjs +0 -1
  1779. package/legacyEntryPoints/react/internal/internal.d.cts +0 -1
  1780. package/legacyEntryPoints/react/react.cjs +0 -1
  1781. package/legacyEntryPoints/react/react.d.cts +0 -1
  1782. package/legacyEntryPoints/react/ssr/index.d.ts +0 -1
  1783. package/legacyEntryPoints/react/ssr/index.js +0 -1
  1784. package/legacyEntryPoints/react/ssr/ssr.cjs +0 -1
  1785. package/legacyEntryPoints/react/ssr/ssr.d.cts +0 -1
  1786. package/legacyEntryPoints/testing/index.d.ts +0 -1
  1787. package/legacyEntryPoints/testing/index.js +0 -1
  1788. package/legacyEntryPoints/testing/react/index.d.ts +0 -1
  1789. package/legacyEntryPoints/testing/react/index.js +0 -1
  1790. package/legacyEntryPoints/testing/react/react.cjs +0 -1
  1791. package/legacyEntryPoints/testing/react/react.d.cts +0 -1
  1792. package/legacyEntryPoints/testing/testing.cjs +0 -1
  1793. package/legacyEntryPoints/testing/testing.d.cts +0 -1
  1794. package/legacyEntryPoints/utilities/environment/environment.cjs +0 -1
  1795. package/legacyEntryPoints/utilities/environment/environment.d.cts +0 -1
  1796. package/legacyEntryPoints/utilities/environment/index.d.ts +0 -1
  1797. package/legacyEntryPoints/utilities/environment/index.js +0 -1
  1798. package/legacyEntryPoints/utilities/index.d.ts +0 -1
  1799. package/legacyEntryPoints/utilities/index.js +0 -1
  1800. package/legacyEntryPoints/utilities/internal/globals/globals.cjs +0 -1
  1801. package/legacyEntryPoints/utilities/internal/globals/globals.d.cts +0 -1
  1802. package/legacyEntryPoints/utilities/internal/globals/index.d.ts +0 -1
  1803. package/legacyEntryPoints/utilities/internal/globals/index.js +0 -1
  1804. package/legacyEntryPoints/utilities/internal/index.d.ts +0 -1
  1805. package/legacyEntryPoints/utilities/internal/index.js +0 -1
  1806. package/legacyEntryPoints/utilities/internal/internal.cjs +0 -1
  1807. package/legacyEntryPoints/utilities/internal/internal.d.cts +0 -1
  1808. package/legacyEntryPoints/utilities/invariant/index.d.ts +0 -1
  1809. package/legacyEntryPoints/utilities/invariant/index.js +0 -1
  1810. package/legacyEntryPoints/utilities/invariant/invariant.cjs +0 -1
  1811. package/legacyEntryPoints/utilities/invariant/invariant.d.cts +0 -1
  1812. package/legacyEntryPoints/utilities/subscriptions/relay/index.d.ts +0 -1
  1813. package/legacyEntryPoints/utilities/subscriptions/relay/index.js +0 -1
  1814. package/legacyEntryPoints/utilities/subscriptions/relay/relay.cjs +0 -1
  1815. package/legacyEntryPoints/utilities/subscriptions/relay/relay.d.cts +0 -1
  1816. package/legacyEntryPoints/utilities/utilities.cjs +0 -1
  1817. package/legacyEntryPoints/utilities/utilities.d.cts +0 -1
  1818. package/link/client-awareness/ClientAwarenessLink.d.ts +0 -62
  1819. package/link/client-awareness/ClientAwarenessLink.js +0 -41
  1820. package/link/client-awareness/ClientAwarenessLink.js.map +0 -1
  1821. package/link/client-awareness/index.d.ts +0 -2
  1822. package/link/client-awareness/index.js +0 -2
  1823. package/link/client-awareness/index.js.map +0 -1
  1824. package/link/http/BaseHttpLink.d.ts +0 -6
  1825. package/link/http/BaseHttpLink.js +0 -107
  1826. package/link/http/BaseHttpLink.js.map +0 -1
  1827. package/link/index.d.ts +0 -8
  1828. package/link/index.js +0 -7
  1829. package/link/index.js.map +0 -1
  1830. package/local-state/LocalState.d.ts +0 -88
  1831. package/local-state/LocalState.js +0 -519
  1832. package/local-state/LocalState.js.map +0 -1
  1833. package/local-state/index.d.ts +0 -2
  1834. package/local-state/index.js +0 -2
  1835. package/local-state/index.js.map +0 -1
  1836. package/masking/GraphQLCodegenDataMasking.d.ts +0 -79
  1837. package/masking/GraphQLCodegenDataMasking.js +0 -2
  1838. package/masking/GraphQLCodegenDataMasking.js.map +0 -1
  1839. package/react/hooks/internal/validateSuspenseHookOptions.d.ts +0 -3
  1840. package/react/hooks/internal/validateSuspenseHookOptions.js +0 -22
  1841. package/react/hooks/internal/validateSuspenseHookOptions.js.map +0 -1
  1842. package/react/index.react-server.d.ts +0 -19
  1843. package/react/index.react-server.js +0 -45
  1844. package/react/index.react-server.js.map +0 -1
  1845. package/react/internal/types.d.ts +0 -4
  1846. package/react/internal/types.js +0 -2
  1847. package/react/internal/types.js.map +0 -1
  1848. package/react/ssr/prerenderStatic.d.ts +0 -122
  1849. package/react/ssr/prerenderStatic.js +0 -154
  1850. package/react/ssr/prerenderStatic.js.map +0 -1
  1851. package/react/ssr/useSSRQuery.d.ts +0 -5
  1852. package/react/ssr/useSSRQuery.js +0 -66
  1853. package/react/ssr/useSSRQuery.js.map +0 -1
  1854. package/react/types/deprecated.d.ts +0 -75
  1855. package/react/types/deprecated.js +0 -2
  1856. package/react/types/deprecated.js.map +0 -1
  1857. package/testing/core/types/deprecated.d.ts +0 -10
  1858. package/testing/core/types/deprecated.js +0 -2
  1859. package/testing/core/types/deprecated.js.map +0 -1
  1860. package/testing/react/index.d.ts +0 -3
  1861. package/testing/react/index.js +0 -2
  1862. package/testing/react/index.js.map +0 -1
  1863. package/utilities/DeepPartial.d.ts +0 -15
  1864. package/utilities/DeepPartial.js +0 -6
  1865. package/utilities/DeepPartial.js.map +0 -1
  1866. package/utilities/HKT.d.ts +0 -35
  1867. package/utilities/HKT.js +0 -2
  1868. package/utilities/HKT.js.map +0 -1
  1869. package/utilities/environment/index.d.ts +0 -2
  1870. package/utilities/environment/index.development.d.ts +0 -2
  1871. package/utilities/environment/index.development.js +0 -2
  1872. package/utilities/environment/index.development.js.map +0 -1
  1873. package/utilities/environment/index.js +0 -2
  1874. package/utilities/environment/index.js.map +0 -1
  1875. package/utilities/environment/index.production.d.ts +0 -2
  1876. package/utilities/environment/index.production.js +0 -2
  1877. package/utilities/environment/index.production.js.map +0 -1
  1878. package/utilities/graphql/isFormattedExecutionResult.d.ts +0 -3
  1879. package/utilities/graphql/isFormattedExecutionResult.js +0 -6
  1880. package/utilities/graphql/isFormattedExecutionResult.js.map +0 -1
  1881. package/utilities/internal/DeepMerger.d.ts +0 -17
  1882. package/utilities/internal/DeepMerger.js +0 -63
  1883. package/utilities/internal/DeepMerger.js.map +0 -1
  1884. package/utilities/internal/argumentsObjectFromField.d.ts +0 -8
  1885. package/utilities/internal/argumentsObjectFromField.js +0 -15
  1886. package/utilities/internal/argumentsObjectFromField.js.map +0 -1
  1887. package/utilities/internal/caches.d.ts +0 -42
  1888. package/utilities/internal/caches.js +0 -73
  1889. package/utilities/internal/caches.js.map +0 -1
  1890. package/utilities/internal/canUseDOM.d.ts +0 -7
  1891. package/utilities/internal/canUseDOM.js +0 -8
  1892. package/utilities/internal/canUseDOM.js.map +0 -1
  1893. package/utilities/internal/checkDocument.d.ts +0 -10
  1894. package/utilities/internal/checkDocument.js +0 -66
  1895. package/utilities/internal/checkDocument.js.map +0 -1
  1896. package/utilities/internal/cloneDeep.d.ts +0 -9
  1897. package/utilities/internal/cloneDeep.js +0 -42
  1898. package/utilities/internal/cloneDeep.js.map +0 -1
  1899. package/utilities/internal/compact.d.ts +0 -11
  1900. package/utilities/internal/compact.js +0 -23
  1901. package/utilities/internal/compact.js.map +0 -1
  1902. package/utilities/internal/createFragmentMap.d.ts +0 -12
  1903. package/utilities/internal/createFragmentMap.js +0 -16
  1904. package/utilities/internal/createFragmentMap.js.map +0 -1
  1905. package/utilities/internal/createFulfilledPromise.d.ts +0 -8
  1906. package/utilities/internal/createFulfilledPromise.js +0 -12
  1907. package/utilities/internal/createFulfilledPromise.js.map +0 -1
  1908. package/utilities/internal/createRejectedPromise.d.ts +0 -8
  1909. package/utilities/internal/createRejectedPromise.js +0 -14
  1910. package/utilities/internal/createRejectedPromise.js.map +0 -1
  1911. package/utilities/internal/dealias.d.ts +0 -5
  1912. package/utilities/internal/dealias.js +0 -18
  1913. package/utilities/internal/dealias.js.map +0 -1
  1914. package/utilities/internal/decoratePromise.d.ts +0 -8
  1915. package/utilities/internal/decoratePromise.js +0 -30
  1916. package/utilities/internal/decoratePromise.js.map +0 -1
  1917. package/utilities/internal/deepFreeze.d.ts +0 -7
  1918. package/utilities/internal/deepFreeze.js +0 -36
  1919. package/utilities/internal/deepFreeze.js.map +0 -1
  1920. package/utilities/internal/filterMap.d.ts +0 -4
  1921. package/utilities/internal/filterMap.js +0 -28
  1922. package/utilities/internal/filterMap.js.map +0 -1
  1923. package/utilities/internal/getDefaultValues.d.ts +0 -8
  1924. package/utilities/internal/getDefaultValues.js +0 -19
  1925. package/utilities/internal/getDefaultValues.js.map +0 -1
  1926. package/utilities/internal/getFragmentDefinition.d.ts +0 -8
  1927. package/utilities/internal/getFragmentDefinition.js +0 -14
  1928. package/utilities/internal/getFragmentDefinition.js.map +0 -1
  1929. package/utilities/internal/getFragmentDefinitions.d.ts +0 -8
  1930. package/utilities/internal/getFragmentDefinitions.js +0 -9
  1931. package/utilities/internal/getFragmentDefinitions.js.map +0 -1
  1932. package/utilities/internal/getFragmentFromSelection.d.ts +0 -10
  1933. package/utilities/internal/getFragmentFromSelection.js +0 -24
  1934. package/utilities/internal/getFragmentFromSelection.js.map +0 -1
  1935. package/utilities/internal/getFragmentQueryDocument.d.ts +0 -29
  1936. package/utilities/internal/getFragmentQueryDocument.js +0 -83
  1937. package/utilities/internal/getFragmentQueryDocument.js.map +0 -1
  1938. package/utilities/internal/getGraphQLErrorsFromResult.d.ts +0 -10
  1939. package/utilities/internal/getGraphQLErrorsFromResult.js +0 -9
  1940. package/utilities/internal/getGraphQLErrorsFromResult.js.map +0 -1
  1941. package/utilities/internal/getMainDefinition.d.ts +0 -12
  1942. package/utilities/internal/getMainDefinition.js +0 -35
  1943. package/utilities/internal/getMainDefinition.js.map +0 -1
  1944. package/utilities/internal/getMemoryInternals.d.ts +0 -80
  1945. package/utilities/internal/getMemoryInternals.js +0 -128
  1946. package/utilities/internal/getMemoryInternals.js.map +0 -1
  1947. package/utilities/internal/getOperationDefinition.d.ts +0 -8
  1948. package/utilities/internal/getOperationDefinition.js +0 -11
  1949. package/utilities/internal/getOperationDefinition.js.map +0 -1
  1950. package/utilities/internal/getOperationName.d.ts +0 -8
  1951. package/utilities/internal/getOperationName.js +0 -9
  1952. package/utilities/internal/getOperationName.js.map +0 -1
  1953. package/utilities/internal/getQueryDefinition.d.ts +0 -8
  1954. package/utilities/internal/getQueryDefinition.js +0 -13
  1955. package/utilities/internal/getQueryDefinition.js.map +0 -1
  1956. package/utilities/internal/getStoreKeyName.d.ts +0 -16
  1957. package/utilities/internal/getStoreKeyName.js +0 -70
  1958. package/utilities/internal/getStoreKeyName.js.map +0 -1
  1959. package/utilities/internal/globals/global.d.ts +0 -3
  1960. package/utilities/internal/globals/global.js +0 -14
  1961. package/utilities/internal/globals/global.js.map +0 -1
  1962. package/utilities/internal/globals/index.d.ts +0 -3
  1963. package/utilities/internal/globals/index.js +0 -3
  1964. package/utilities/internal/globals/index.js.map +0 -1
  1965. package/utilities/internal/globals/maybe.d.ts +0 -2
  1966. package/utilities/internal/globals/maybe.js +0 -7
  1967. package/utilities/internal/globals/maybe.js.map +0 -1
  1968. package/utilities/internal/graphQLResultHasError.d.ts +0 -8
  1969. package/utilities/internal/graphQLResultHasError.js +0 -9
  1970. package/utilities/internal/graphQLResultHasError.js.map +0 -1
  1971. package/utilities/internal/hasDirectives.d.ts +0 -8
  1972. package/utilities/internal/hasDirectives.js +0 -21
  1973. package/utilities/internal/hasDirectives.js.map +0 -1
  1974. package/utilities/internal/hasForcedResolvers.d.ts +0 -3
  1975. package/utilities/internal/hasForcedResolvers.js +0 -20
  1976. package/utilities/internal/hasForcedResolvers.js.map +0 -1
  1977. package/utilities/internal/index.d.ts +0 -64
  1978. package/utilities/internal/index.js +0 -49
  1979. package/utilities/internal/index.js.map +0 -1
  1980. package/utilities/internal/index.production.d.ts +0 -3
  1981. package/utilities/internal/index.production.js +0 -7
  1982. package/utilities/internal/index.production.js.map +0 -1
  1983. package/utilities/internal/isArray.d.ts +0 -9
  1984. package/utilities/internal/isArray.js +0 -9
  1985. package/utilities/internal/isArray.js.map +0 -1
  1986. package/utilities/internal/isDocumentNode.d.ts +0 -8
  1987. package/utilities/internal/isDocumentNode.js +0 -12
  1988. package/utilities/internal/isDocumentNode.js.map +0 -1
  1989. package/utilities/internal/isField.d.ts +0 -8
  1990. package/utilities/internal/isField.js +0 -9
  1991. package/utilities/internal/isField.js.map +0 -1
  1992. package/utilities/internal/isNonEmptyArray.d.ts +0 -7
  1993. package/utilities/internal/isNonEmptyArray.js +0 -9
  1994. package/utilities/internal/isNonEmptyArray.js.map +0 -1
  1995. package/utilities/internal/isNonNullObject.d.ts +0 -7
  1996. package/utilities/internal/isNonNullObject.js +0 -9
  1997. package/utilities/internal/isNonNullObject.js.map +0 -1
  1998. package/utilities/internal/isPlainObject.d.ts +0 -7
  1999. package/utilities/internal/isPlainObject.js +0 -12
  2000. package/utilities/internal/isPlainObject.js.map +0 -1
  2001. package/utilities/internal/makeReference.d.ts +0 -8
  2002. package/utilities/internal/makeReference.js +0 -9
  2003. package/utilities/internal/makeReference.js.map +0 -1
  2004. package/utilities/internal/makeUniqueId.d.ts +0 -10
  2005. package/utilities/internal/makeUniqueId.js +0 -15
  2006. package/utilities/internal/makeUniqueId.js.map +0 -1
  2007. package/utilities/internal/maybeDeepFreeze.d.ts +0 -7
  2008. package/utilities/internal/maybeDeepFreeze.js +0 -14
  2009. package/utilities/internal/maybeDeepFreeze.js.map +0 -1
  2010. package/utilities/internal/mergeDeep.d.ts +0 -8
  2011. package/utilities/internal/mergeDeep.js +0 -23
  2012. package/utilities/internal/mergeDeep.js.map +0 -1
  2013. package/utilities/internal/mergeDeepArray.d.ts +0 -7
  2014. package/utilities/internal/mergeDeepArray.js +0 -24
  2015. package/utilities/internal/mergeDeepArray.js.map +0 -1
  2016. package/utilities/internal/mergeOptions.d.ts +0 -10
  2017. package/utilities/internal/mergeOptions.js +0 -15
  2018. package/utilities/internal/mergeOptions.js.map +0 -1
  2019. package/utilities/internal/omitDeep.d.ts +0 -8
  2020. package/utilities/internal/omitDeep.js +0 -45
  2021. package/utilities/internal/omitDeep.js.map +0 -1
  2022. package/utilities/internal/preventUnhandledRejection.d.ts +0 -2
  2023. package/utilities/internal/preventUnhandledRejection.js +0 -5
  2024. package/utilities/internal/preventUnhandledRejection.js.map +0 -1
  2025. package/utilities/internal/removeDirectivesFromDocument.d.ts +0 -14
  2026. package/utilities/internal/removeDirectivesFromDocument.js +0 -300
  2027. package/utilities/internal/removeDirectivesFromDocument.js.map +0 -1
  2028. package/utilities/internal/resultKeyNameFromField.d.ts +0 -8
  2029. package/utilities/internal/resultKeyNameFromField.js +0 -9
  2030. package/utilities/internal/resultKeyNameFromField.js.map +0 -1
  2031. package/utilities/internal/shouldInclude.d.ts +0 -8
  2032. package/utilities/internal/shouldInclude.js +0 -47
  2033. package/utilities/internal/shouldInclude.js.map +0 -1
  2034. package/utilities/internal/storeKeyNameFromField.d.ts +0 -8
  2035. package/utilities/internal/storeKeyNameFromField.js +0 -26
  2036. package/utilities/internal/storeKeyNameFromField.js.map +0 -1
  2037. package/utilities/internal/stringifyForDisplay.d.ts +0 -7
  2038. package/utilities/internal/stringifyForDisplay.js +0 -15
  2039. package/utilities/internal/stringifyForDisplay.js.map +0 -1
  2040. package/utilities/internal/toQueryResult.d.ts +0 -8
  2041. package/utilities/internal/toQueryResult.js +0 -15
  2042. package/utilities/internal/toQueryResult.js.map +0 -1
  2043. package/utilities/internal/types/ApplyHKT.d.ts +0 -13
  2044. package/utilities/internal/types/ApplyHKT.js +0 -2
  2045. package/utilities/internal/types/ApplyHKT.js.map +0 -1
  2046. package/utilities/internal/types/ApplyHKTImplementationWithDefault.d.ts +0 -11
  2047. package/utilities/internal/types/ApplyHKTImplementationWithDefault.js +0 -2
  2048. package/utilities/internal/types/ApplyHKTImplementationWithDefault.js.map +0 -1
  2049. package/utilities/internal/types/DecoratedPromise.d.ts +0 -10
  2050. package/utilities/internal/types/DecoratedPromise.js +0 -2
  2051. package/utilities/internal/types/DecoratedPromise.js.map +0 -1
  2052. package/utilities/internal/types/DeepOmit.d.ts +0 -15
  2053. package/utilities/internal/types/DeepOmit.js +0 -2
  2054. package/utilities/internal/types/DeepOmit.js.map +0 -1
  2055. package/utilities/internal/types/FragmentMap.d.ts +0 -12
  2056. package/utilities/internal/types/FragmentMap.js +0 -2
  2057. package/utilities/internal/types/FragmentMap.js.map +0 -1
  2058. package/utilities/internal/types/FragmentMapFunction.d.ts +0 -8
  2059. package/utilities/internal/types/FragmentMapFunction.js +0 -2
  2060. package/utilities/internal/types/FragmentMapFunction.js.map +0 -1
  2061. package/utilities/internal/types/FulfilledPromise.d.ts +0 -10
  2062. package/utilities/internal/types/FulfilledPromise.js +0 -2
  2063. package/utilities/internal/types/FulfilledPromise.js.map +0 -1
  2064. package/utilities/internal/types/IsAny.d.ts +0 -7
  2065. package/utilities/internal/types/IsAny.js +0 -2
  2066. package/utilities/internal/types/IsAny.js.map +0 -1
  2067. package/utilities/internal/types/NoInfer.d.ts +0 -29
  2068. package/utilities/internal/types/NoInfer.js +0 -2
  2069. package/utilities/internal/types/NoInfer.js.map +0 -1
  2070. package/utilities/internal/types/PendingPromise.d.ts +0 -9
  2071. package/utilities/internal/types/PendingPromise.js +0 -2
  2072. package/utilities/internal/types/PendingPromise.js.map +0 -1
  2073. package/utilities/internal/types/Prettify.d.ts +0 -9
  2074. package/utilities/internal/types/Prettify.js +0 -2
  2075. package/utilities/internal/types/Prettify.js.map +0 -1
  2076. package/utilities/internal/types/Primitive.d.ts +0 -7
  2077. package/utilities/internal/types/Primitive.js +0 -2
  2078. package/utilities/internal/types/Primitive.js.map +0 -1
  2079. package/utilities/internal/types/RejectedPromise.d.ts +0 -10
  2080. package/utilities/internal/types/RejectedPromise.js +0 -2
  2081. package/utilities/internal/types/RejectedPromise.js.map +0 -1
  2082. package/utilities/internal/types/RemoveIndexSignature.d.ts +0 -9
  2083. package/utilities/internal/types/RemoveIndexSignature.js +0 -2
  2084. package/utilities/internal/types/RemoveIndexSignature.js.map +0 -1
  2085. package/utilities/internal/types/TupleToIntersection.d.ts +0 -2
  2086. package/utilities/internal/types/TupleToIntersection.js +0 -2
  2087. package/utilities/internal/types/TupleToIntersection.js.map +0 -1
  2088. package/utilities/internal/types/VariablesOption.d.ts +0 -30
  2089. package/utilities/internal/types/VariablesOption.js +0 -2
  2090. package/utilities/internal/types/VariablesOption.js.map +0 -1
  2091. package/utilities/internal/valueToObjectRepresentation.d.ts +0 -8
  2092. package/utilities/internal/valueToObjectRepresentation.js +0 -41
  2093. package/utilities/internal/valueToObjectRepresentation.js.map +0 -1
  2094. package/utilities/invariant/index.d.ts +0 -47
  2095. package/utilities/invariant/index.development.d.ts +0 -4
  2096. package/utilities/invariant/index.development.js +0 -12
  2097. package/utilities/invariant/index.development.js.map +0 -1
  2098. package/utilities/invariant/index.js +0 -90
  2099. package/utilities/invariant/index.js.map +0 -1
  2100. package/utilities/shared/canonicalStringify.d.ts +0 -21
  2101. package/utilities/shared/canonicalStringify.js +0 -88
  2102. package/utilities/shared/canonicalStringify.js.map +0 -1
@@ -0,0 +1,2762 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var tslib = require('tslib');
6
+ var globals = require('../utilities/globals');
7
+ var core = require('../link/core');
8
+ var http = require('../link/http');
9
+ var equal = require('@wry/equality');
10
+ var utilities = require('../utilities');
11
+ var cache = require('../cache');
12
+ var errors = require('../errors');
13
+ var optimism = require('optimism');
14
+ var trie = require('@wry/trie');
15
+ var masking = require('../masking');
16
+ var graphql = require('graphql');
17
+ var utils = require('../link/utils');
18
+ var tsInvariant = require('ts-invariant');
19
+ var graphqlTag = require('graphql-tag');
20
+
21
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e["default"] : e; }
22
+
23
+ var equal__default = /*#__PURE__*/_interopDefaultLegacy(equal);
24
+
25
+ var version = "3.13.9";
26
+
27
+ function isNonNullObject(obj) {
28
+ return obj !== null && typeof obj === "object";
29
+ }
30
+
31
+ function isNonEmptyArray(value) {
32
+ return Array.isArray(value) && value.length > 0;
33
+ }
34
+
35
+ var hasOwnProperty$2 = Object.prototype.hasOwnProperty;
36
+ var defaultReconciler = function (target, source, property) {
37
+ return this.merge(target[property], source[property]);
38
+ };
39
+ var DeepMerger = (function () {
40
+ function DeepMerger(reconciler) {
41
+ if (reconciler === void 0) { reconciler = defaultReconciler; }
42
+ this.reconciler = reconciler;
43
+ this.isObject = isNonNullObject;
44
+ this.pastCopies = new Set();
45
+ }
46
+ DeepMerger.prototype.merge = function (target, source) {
47
+ var _this = this;
48
+ var context = [];
49
+ for (var _i = 2; _i < arguments.length; _i++) {
50
+ context[_i - 2] = arguments[_i];
51
+ }
52
+ if (isNonNullObject(source) && isNonNullObject(target)) {
53
+ Object.keys(source).forEach(function (sourceKey) {
54
+ if (hasOwnProperty$2.call(target, sourceKey)) {
55
+ var targetValue = target[sourceKey];
56
+ if (source[sourceKey] !== targetValue) {
57
+ var result = _this.reconciler.apply(_this, tslib.__spreadArray([target,
58
+ source,
59
+ sourceKey], context, false));
60
+ if (result !== targetValue) {
61
+ target = _this.shallowCopyForMerge(target);
62
+ target[sourceKey] = result;
63
+ }
64
+ }
65
+ }
66
+ else {
67
+ target = _this.shallowCopyForMerge(target);
68
+ target[sourceKey] = source[sourceKey];
69
+ }
70
+ });
71
+ return target;
72
+ }
73
+ return source;
74
+ };
75
+ DeepMerger.prototype.shallowCopyForMerge = function (value) {
76
+ if (isNonNullObject(value)) {
77
+ if (!this.pastCopies.has(value)) {
78
+ if (Array.isArray(value)) {
79
+ value = value.slice(0);
80
+ }
81
+ else {
82
+ value = tslib.__assign({ __proto__: Object.getPrototypeOf(value) }, value);
83
+ }
84
+ this.pastCopies.add(value);
85
+ }
86
+ }
87
+ return value;
88
+ };
89
+ return DeepMerger;
90
+ }());
91
+
92
+ function isExecutionPatchIncrementalResult(value) {
93
+ return "incremental" in value;
94
+ }
95
+ function mergeIncrementalData(prevResult, result) {
96
+ var mergedData = prevResult;
97
+ var merger = new DeepMerger();
98
+ if (isExecutionPatchIncrementalResult(result) &&
99
+ isNonEmptyArray(result.incremental)) {
100
+ result.incremental.forEach(function (_a) {
101
+ var data = _a.data, path = _a.path;
102
+ for (var i = path.length - 1; i >= 0; --i) {
103
+ var key = path[i];
104
+ var isNumericKey = !isNaN(+key);
105
+ var parent_1 = isNumericKey ? [] : {};
106
+ parent_1[key] = data;
107
+ data = parent_1;
108
+ }
109
+ mergedData = merger.merge(mergedData, data);
110
+ });
111
+ }
112
+ return mergedData;
113
+ }
114
+
115
+ exports.NetworkStatus = void 0;
116
+ (function (NetworkStatus) {
117
+ NetworkStatus[NetworkStatus["loading"] = 1] = "loading";
118
+ NetworkStatus[NetworkStatus["setVariables"] = 2] = "setVariables";
119
+ NetworkStatus[NetworkStatus["fetchMore"] = 3] = "fetchMore";
120
+ NetworkStatus[NetworkStatus["refetch"] = 4] = "refetch";
121
+ NetworkStatus[NetworkStatus["poll"] = 6] = "poll";
122
+ NetworkStatus[NetworkStatus["ready"] = 7] = "ready";
123
+ NetworkStatus[NetworkStatus["error"] = 8] = "error";
124
+ })(exports.NetworkStatus || (exports.NetworkStatus = {}));
125
+ function isNetworkRequestInFlight(networkStatus) {
126
+ return networkStatus ? networkStatus < 7 : false;
127
+ }
128
+ function isNetworkRequestSettled(networkStatus) {
129
+ return networkStatus === 7 || networkStatus === 8;
130
+ }
131
+
132
+ function equalByQuery(query, _a, _b, variables) {
133
+ var aData = _a.data, aRest = tslib.__rest(_a, ["data"]);
134
+ var bData = _b.data, bRest = tslib.__rest(_b, ["data"]);
135
+ return (equal__default(aRest, bRest) &&
136
+ equalBySelectionSet(utilities.getMainDefinition(query).selectionSet, aData, bData, {
137
+ fragmentMap: utilities.createFragmentMap(utilities.getFragmentDefinitions(query)),
138
+ variables: variables,
139
+ }));
140
+ }
141
+ function equalBySelectionSet(selectionSet, aResult, bResult, context) {
142
+ if (aResult === bResult) {
143
+ return true;
144
+ }
145
+ var seenSelections = new Set();
146
+ return selectionSet.selections.every(function (selection) {
147
+ if (seenSelections.has(selection))
148
+ return true;
149
+ seenSelections.add(selection);
150
+ if (!utilities.shouldInclude(selection, context.variables))
151
+ return true;
152
+ if (selectionHasNonreactiveDirective(selection))
153
+ return true;
154
+ if (utilities.isField(selection)) {
155
+ var resultKey = utilities.resultKeyNameFromField(selection);
156
+ var aResultChild = aResult && aResult[resultKey];
157
+ var bResultChild = bResult && bResult[resultKey];
158
+ var childSelectionSet = selection.selectionSet;
159
+ if (!childSelectionSet) {
160
+ return equal__default(aResultChild, bResultChild);
161
+ }
162
+ var aChildIsArray = Array.isArray(aResultChild);
163
+ var bChildIsArray = Array.isArray(bResultChild);
164
+ if (aChildIsArray !== bChildIsArray)
165
+ return false;
166
+ if (aChildIsArray && bChildIsArray) {
167
+ var length_1 = aResultChild.length;
168
+ if (bResultChild.length !== length_1) {
169
+ return false;
170
+ }
171
+ for (var i = 0; i < length_1; ++i) {
172
+ if (!equalBySelectionSet(childSelectionSet, aResultChild[i], bResultChild[i], context)) {
173
+ return false;
174
+ }
175
+ }
176
+ return true;
177
+ }
178
+ return equalBySelectionSet(childSelectionSet, aResultChild, bResultChild, context);
179
+ }
180
+ else {
181
+ var fragment = utilities.getFragmentFromSelection(selection, context.fragmentMap);
182
+ if (fragment) {
183
+ if (selectionHasNonreactiveDirective(fragment))
184
+ return true;
185
+ return equalBySelectionSet(fragment.selectionSet,
186
+ aResult, bResult, context);
187
+ }
188
+ }
189
+ });
190
+ }
191
+ function selectionHasNonreactiveDirective(selection) {
192
+ return (!!selection.directives && selection.directives.some(directiveIsNonreactive));
193
+ }
194
+ function directiveIsNonreactive(dir) {
195
+ return dir.name.value === "nonreactive";
196
+ }
197
+
198
+ var assign = Object.assign, hasOwnProperty$1 = Object.hasOwnProperty;
199
+ var ObservableQuery = (function (_super) {
200
+ tslib.__extends(ObservableQuery, _super);
201
+ function ObservableQuery(_a) {
202
+ var queryManager = _a.queryManager, queryInfo = _a.queryInfo, options = _a.options;
203
+ var _this = this;
204
+ var startedInactive = ObservableQuery.inactiveOnCreation.getValue();
205
+ _this = _super.call(this, function (observer) {
206
+ _this._getOrCreateQuery();
207
+ try {
208
+ var subObserver = observer._subscription._observer;
209
+ if (subObserver && !subObserver.error) {
210
+ subObserver.error = defaultSubscriptionObserverErrorCallback;
211
+ }
212
+ }
213
+ catch (_a) { }
214
+ var first = !_this.observers.size;
215
+ _this.observers.add(observer);
216
+ var last = _this.last;
217
+ if (last && last.error) {
218
+ observer.error && observer.error(last.error);
219
+ }
220
+ else if (last && last.result) {
221
+ observer.next && observer.next(_this.maskResult(last.result));
222
+ }
223
+ if (first) {
224
+ _this.reobserve().catch(function () { });
225
+ }
226
+ return function () {
227
+ if (_this.observers.delete(observer) && !_this.observers.size) {
228
+ _this.tearDownQuery();
229
+ }
230
+ };
231
+ }) || this;
232
+ _this.observers = new Set();
233
+ _this.subscriptions = new Set();
234
+ _this.dirty = false;
235
+ _this._getOrCreateQuery = function () {
236
+ if (startedInactive) {
237
+ queryManager["queries"].set(_this.queryId, queryInfo);
238
+ startedInactive = false;
239
+ }
240
+ return _this.queryManager.getOrCreateQuery(_this.queryId);
241
+ };
242
+ _this.queryInfo = queryInfo;
243
+ _this.queryManager = queryManager;
244
+ _this.waitForOwnResult = skipCacheDataFor(options.fetchPolicy);
245
+ _this.isTornDown = false;
246
+ _this.subscribeToMore = _this.subscribeToMore.bind(_this);
247
+ _this.maskResult = _this.maskResult.bind(_this);
248
+ var _b = queryManager.defaultOptions.watchQuery, _c = _b === void 0 ? {} : _b, _d = _c.fetchPolicy, defaultFetchPolicy = _d === void 0 ? "cache-first" : _d;
249
+ var _e = options.fetchPolicy, fetchPolicy = _e === void 0 ? defaultFetchPolicy : _e,
250
+ _f = options.initialFetchPolicy,
251
+ initialFetchPolicy = _f === void 0 ? fetchPolicy === "standby" ? defaultFetchPolicy : (fetchPolicy) : _f;
252
+ _this.options = tslib.__assign(tslib.__assign({}, options), {
253
+ initialFetchPolicy: initialFetchPolicy,
254
+ fetchPolicy: fetchPolicy });
255
+ _this.queryId = queryInfo.queryId || queryManager.generateQueryId();
256
+ var opDef = utilities.getOperationDefinition(_this.query);
257
+ _this.queryName = opDef && opDef.name && opDef.name.value;
258
+ return _this;
259
+ }
260
+ Object.defineProperty(ObservableQuery.prototype, "query", {
261
+ get: function () {
262
+ return this.lastQuery || this.options.query;
263
+ },
264
+ enumerable: false,
265
+ configurable: true
266
+ });
267
+ Object.defineProperty(ObservableQuery.prototype, "variables", {
268
+ get: function () {
269
+ return this.options.variables;
270
+ },
271
+ enumerable: false,
272
+ configurable: true
273
+ });
274
+ ObservableQuery.prototype.result = function () {
275
+ var _this = this;
276
+ return new Promise(function (resolve, reject) {
277
+ var observer = {
278
+ next: function (result) {
279
+ resolve(result);
280
+ _this.observers.delete(observer);
281
+ if (!_this.observers.size) {
282
+ _this.queryManager.removeQuery(_this.queryId);
283
+ }
284
+ setTimeout(function () {
285
+ subscription.unsubscribe();
286
+ }, 0);
287
+ },
288
+ error: reject,
289
+ };
290
+ var subscription = _this.subscribe(observer);
291
+ });
292
+ };
293
+ ObservableQuery.prototype.resetDiff = function () {
294
+ this.queryInfo.resetDiff();
295
+ };
296
+ ObservableQuery.prototype.getCurrentFullResult = function (saveAsLastResult) {
297
+ if (saveAsLastResult === void 0) { saveAsLastResult = true; }
298
+ var lastResult = this.getLastResult(true);
299
+ var networkStatus = this.queryInfo.networkStatus ||
300
+ (lastResult && lastResult.networkStatus) ||
301
+ exports.NetworkStatus.ready;
302
+ var result = tslib.__assign(tslib.__assign({}, lastResult), { loading: isNetworkRequestInFlight(networkStatus), networkStatus: networkStatus });
303
+ var _a = this.options.fetchPolicy, fetchPolicy = _a === void 0 ? "cache-first" : _a;
304
+ if (
305
+ skipCacheDataFor(fetchPolicy) ||
306
+ this.queryManager.getDocumentInfo(this.query).hasForcedResolvers) ;
307
+ else if (this.waitForOwnResult) {
308
+ this.queryInfo["updateWatch"]();
309
+ }
310
+ else {
311
+ var diff = this.queryInfo.getDiff();
312
+ if (diff.complete || this.options.returnPartialData) {
313
+ result.data = diff.result;
314
+ }
315
+ if (equal.equal(result.data, {})) {
316
+ result.data = void 0;
317
+ }
318
+ if (diff.complete) {
319
+ delete result.partial;
320
+ if (diff.complete &&
321
+ result.networkStatus === exports.NetworkStatus.loading &&
322
+ (fetchPolicy === "cache-first" || fetchPolicy === "cache-only")) {
323
+ result.networkStatus = exports.NetworkStatus.ready;
324
+ result.loading = false;
325
+ }
326
+ }
327
+ else {
328
+ result.partial = true;
329
+ }
330
+ if (result.networkStatus === exports.NetworkStatus.ready &&
331
+ (result.error || result.errors)) {
332
+ result.networkStatus = exports.NetworkStatus.error;
333
+ }
334
+ if (globalThis.__DEV__ !== false &&
335
+ !diff.complete &&
336
+ !this.options.partialRefetch &&
337
+ !result.loading &&
338
+ !result.data &&
339
+ !result.error) {
340
+ logMissingFieldErrors(diff.missing);
341
+ }
342
+ }
343
+ if (saveAsLastResult) {
344
+ this.updateLastResult(result);
345
+ }
346
+ return result;
347
+ };
348
+ ObservableQuery.prototype.getCurrentResult = function (saveAsLastResult) {
349
+ if (saveAsLastResult === void 0) { saveAsLastResult = true; }
350
+ return this.maskResult(this.getCurrentFullResult(saveAsLastResult));
351
+ };
352
+ ObservableQuery.prototype.isDifferentFromLastResult = function (newResult, variables) {
353
+ if (!this.last) {
354
+ return true;
355
+ }
356
+ var documentInfo = this.queryManager.getDocumentInfo(this.query);
357
+ var dataMasking = this.queryManager.dataMasking;
358
+ var query = dataMasking ? documentInfo.nonReactiveQuery : this.query;
359
+ var resultIsDifferent = dataMasking || documentInfo.hasNonreactiveDirective ?
360
+ !equalByQuery(query, this.last.result, newResult, this.variables)
361
+ : !equal.equal(this.last.result, newResult);
362
+ return (resultIsDifferent || (variables && !equal.equal(this.last.variables, variables)));
363
+ };
364
+ ObservableQuery.prototype.getLast = function (key, variablesMustMatch) {
365
+ var last = this.last;
366
+ if (last &&
367
+ last[key] &&
368
+ (!variablesMustMatch || equal.equal(last.variables, this.variables))) {
369
+ return last[key];
370
+ }
371
+ };
372
+ ObservableQuery.prototype.getLastResult = function (variablesMustMatch) {
373
+ return this.getLast("result", variablesMustMatch);
374
+ };
375
+ ObservableQuery.prototype.getLastError = function (variablesMustMatch) {
376
+ return this.getLast("error", variablesMustMatch);
377
+ };
378
+ ObservableQuery.prototype.resetLastResults = function () {
379
+ delete this.last;
380
+ this.isTornDown = false;
381
+ };
382
+ ObservableQuery.prototype.resetQueryStoreErrors = function () {
383
+ this.queryManager.resetErrors(this.queryId);
384
+ };
385
+ ObservableQuery.prototype.refetch = function (variables) {
386
+ var _a;
387
+ var reobserveOptions = {
388
+ pollInterval: 0,
389
+ };
390
+ var fetchPolicy = this.options.fetchPolicy;
391
+ if (fetchPolicy === "no-cache") {
392
+ reobserveOptions.fetchPolicy = "no-cache";
393
+ }
394
+ else {
395
+ reobserveOptions.fetchPolicy = "network-only";
396
+ }
397
+ if (globalThis.__DEV__ !== false && variables && hasOwnProperty$1.call(variables, "variables")) {
398
+ var queryDef = utilities.getQueryDefinition(this.query);
399
+ var vars = queryDef.variableDefinitions;
400
+ if (!vars || !vars.some(function (v) { return v.variable.name.value === "variables"; })) {
401
+ globalThis.__DEV__ !== false && globals.invariant.warn(
402
+ 21,
403
+ variables,
404
+ ((_a = queryDef.name) === null || _a === void 0 ? void 0 : _a.value) || queryDef
405
+ );
406
+ }
407
+ }
408
+ if (variables && !equal.equal(this.options.variables, variables)) {
409
+ reobserveOptions.variables = this.options.variables = tslib.__assign(tslib.__assign({}, this.options.variables), variables);
410
+ }
411
+ this.queryInfo.resetLastWrite();
412
+ return this.reobserve(reobserveOptions, exports.NetworkStatus.refetch);
413
+ };
414
+ ObservableQuery.prototype.fetchMore = function (fetchMoreOptions) {
415
+ var _this = this;
416
+ var combinedOptions = tslib.__assign(tslib.__assign({}, (fetchMoreOptions.query ? fetchMoreOptions : (tslib.__assign(tslib.__assign(tslib.__assign(tslib.__assign({}, this.options), { query: this.options.query }), fetchMoreOptions), { variables: tslib.__assign(tslib.__assign({}, this.options.variables), fetchMoreOptions.variables) })))), {
417
+ fetchPolicy: "no-cache" });
418
+ combinedOptions.query = this.transformDocument(combinedOptions.query);
419
+ var qid = this.queryManager.generateQueryId();
420
+ this.lastQuery =
421
+ fetchMoreOptions.query ?
422
+ this.transformDocument(this.options.query)
423
+ : combinedOptions.query;
424
+ var queryInfo = this.queryInfo;
425
+ var originalNetworkStatus = queryInfo.networkStatus;
426
+ queryInfo.networkStatus = exports.NetworkStatus.fetchMore;
427
+ if (combinedOptions.notifyOnNetworkStatusChange) {
428
+ this.observe();
429
+ }
430
+ var updatedQuerySet = new Set();
431
+ var updateQuery = fetchMoreOptions === null || fetchMoreOptions === void 0 ? void 0 : fetchMoreOptions.updateQuery;
432
+ var isCached = this.options.fetchPolicy !== "no-cache";
433
+ if (!isCached) {
434
+ globals.invariant(updateQuery, 22);
435
+ }
436
+ return this.queryManager
437
+ .fetchQuery(qid, combinedOptions, exports.NetworkStatus.fetchMore)
438
+ .then(function (fetchMoreResult) {
439
+ _this.queryManager.removeQuery(qid);
440
+ if (queryInfo.networkStatus === exports.NetworkStatus.fetchMore) {
441
+ queryInfo.networkStatus = originalNetworkStatus;
442
+ }
443
+ if (isCached) {
444
+ _this.queryManager.cache.batch({
445
+ update: function (cache) {
446
+ var updateQuery = fetchMoreOptions.updateQuery;
447
+ if (updateQuery) {
448
+ cache.updateQuery({
449
+ query: _this.query,
450
+ variables: _this.variables,
451
+ returnPartialData: true,
452
+ optimistic: false,
453
+ }, function (previous) {
454
+ return updateQuery(previous, {
455
+ fetchMoreResult: fetchMoreResult.data,
456
+ variables: combinedOptions.variables,
457
+ });
458
+ });
459
+ }
460
+ else {
461
+ cache.writeQuery({
462
+ query: combinedOptions.query,
463
+ variables: combinedOptions.variables,
464
+ data: fetchMoreResult.data,
465
+ });
466
+ }
467
+ },
468
+ onWatchUpdated: function (watch) {
469
+ updatedQuerySet.add(watch.query);
470
+ },
471
+ });
472
+ }
473
+ else {
474
+ var lastResult = _this.getLast("result");
475
+ var data = updateQuery(lastResult.data, {
476
+ fetchMoreResult: fetchMoreResult.data,
477
+ variables: combinedOptions.variables,
478
+ });
479
+ _this.reportResult(tslib.__assign(tslib.__assign({}, lastResult), { networkStatus: originalNetworkStatus, loading: isNetworkRequestInFlight(originalNetworkStatus), data: data }), _this.variables);
480
+ }
481
+ return _this.maskResult(fetchMoreResult);
482
+ })
483
+ .finally(function () {
484
+ if (isCached && !updatedQuerySet.has(_this.query)) {
485
+ _this.reobserveCacheFirst();
486
+ }
487
+ });
488
+ };
489
+ ObservableQuery.prototype.subscribeToMore = function (options) {
490
+ var _this = this;
491
+ var subscription = this.queryManager
492
+ .startGraphQLSubscription({
493
+ query: options.document,
494
+ variables: options.variables,
495
+ context: options.context,
496
+ })
497
+ .subscribe({
498
+ next: function (subscriptionData) {
499
+ var updateQuery = options.updateQuery;
500
+ if (updateQuery) {
501
+ _this.updateQuery(function (previous, updateOptions) {
502
+ return updateQuery(previous, tslib.__assign({ subscriptionData: subscriptionData }, updateOptions));
503
+ });
504
+ }
505
+ },
506
+ error: function (err) {
507
+ if (options.onError) {
508
+ options.onError(err);
509
+ return;
510
+ }
511
+ globalThis.__DEV__ !== false && globals.invariant.error(23, err);
512
+ },
513
+ });
514
+ this.subscriptions.add(subscription);
515
+ return function () {
516
+ if (_this.subscriptions.delete(subscription)) {
517
+ subscription.unsubscribe();
518
+ }
519
+ };
520
+ };
521
+ ObservableQuery.prototype.setOptions = function (newOptions) {
522
+ return this.reobserve(newOptions);
523
+ };
524
+ ObservableQuery.prototype.silentSetOptions = function (newOptions) {
525
+ var mergedOptions = utilities.compact(this.options, newOptions || {});
526
+ assign(this.options, mergedOptions);
527
+ };
528
+ ObservableQuery.prototype.setVariables = function (variables) {
529
+ if (equal.equal(this.variables, variables)) {
530
+ return this.observers.size ? this.result() : Promise.resolve();
531
+ }
532
+ this.options.variables = variables;
533
+ if (!this.observers.size) {
534
+ return Promise.resolve();
535
+ }
536
+ return this.reobserve({
537
+ fetchPolicy: this.options.initialFetchPolicy,
538
+ variables: variables,
539
+ }, exports.NetworkStatus.setVariables);
540
+ };
541
+ ObservableQuery.prototype.updateQuery = function (mapFn) {
542
+ var queryManager = this.queryManager;
543
+ var _a = queryManager.cache.diff({
544
+ query: this.options.query,
545
+ variables: this.variables,
546
+ returnPartialData: true,
547
+ optimistic: false,
548
+ }), result = _a.result, complete = _a.complete;
549
+ var newResult = mapFn(result, {
550
+ variables: this.variables,
551
+ complete: !!complete,
552
+ previousData: result,
553
+ });
554
+ if (newResult) {
555
+ queryManager.cache.writeQuery({
556
+ query: this.options.query,
557
+ data: newResult,
558
+ variables: this.variables,
559
+ });
560
+ queryManager.broadcastQueries();
561
+ }
562
+ };
563
+ ObservableQuery.prototype.startPolling = function (pollInterval) {
564
+ this.options.pollInterval = pollInterval;
565
+ this.updatePolling();
566
+ };
567
+ ObservableQuery.prototype.stopPolling = function () {
568
+ this.options.pollInterval = 0;
569
+ this.updatePolling();
570
+ };
571
+ ObservableQuery.prototype.applyNextFetchPolicy = function (reason,
572
+ options) {
573
+ if (options.nextFetchPolicy) {
574
+ var _a = options.fetchPolicy, fetchPolicy = _a === void 0 ? "cache-first" : _a, _b = options.initialFetchPolicy, initialFetchPolicy = _b === void 0 ? fetchPolicy : _b;
575
+ if (fetchPolicy === "standby") ;
576
+ else if (typeof options.nextFetchPolicy === "function") {
577
+ options.fetchPolicy = options.nextFetchPolicy(fetchPolicy, {
578
+ reason: reason,
579
+ options: options,
580
+ observable: this,
581
+ initialFetchPolicy: initialFetchPolicy,
582
+ });
583
+ }
584
+ else if (reason === "variables-changed") {
585
+ options.fetchPolicy = initialFetchPolicy;
586
+ }
587
+ else {
588
+ options.fetchPolicy = options.nextFetchPolicy;
589
+ }
590
+ }
591
+ return options.fetchPolicy;
592
+ };
593
+ ObservableQuery.prototype.fetch = function (options, newNetworkStatus, query) {
594
+ var queryInfo = this._getOrCreateQuery();
595
+ queryInfo.setObservableQuery(this);
596
+ return this.queryManager["fetchConcastWithInfo"](queryInfo, options, newNetworkStatus, query);
597
+ };
598
+ ObservableQuery.prototype.updatePolling = function () {
599
+ var _this = this;
600
+ if (this.queryManager.ssrMode) {
601
+ return;
602
+ }
603
+ var _a = this, pollingInfo = _a.pollingInfo, pollInterval = _a.options.pollInterval;
604
+ if (!pollInterval || !this.hasObservers()) {
605
+ if (pollingInfo) {
606
+ clearTimeout(pollingInfo.timeout);
607
+ delete this.pollingInfo;
608
+ }
609
+ return;
610
+ }
611
+ if (pollingInfo && pollingInfo.interval === pollInterval) {
612
+ return;
613
+ }
614
+ globals.invariant(pollInterval, 24);
615
+ var info = pollingInfo || (this.pollingInfo = {});
616
+ info.interval = pollInterval;
617
+ var maybeFetch = function () {
618
+ var _a, _b;
619
+ if (_this.pollingInfo) {
620
+ if (!isNetworkRequestInFlight(_this.queryInfo.networkStatus) &&
621
+ !((_b = (_a = _this.options).skipPollAttempt) === null || _b === void 0 ? void 0 : _b.call(_a))) {
622
+ _this.reobserve({
623
+ fetchPolicy: _this.options.initialFetchPolicy === "no-cache" ?
624
+ "no-cache"
625
+ : "network-only",
626
+ }, exports.NetworkStatus.poll).then(poll, poll);
627
+ }
628
+ else {
629
+ poll();
630
+ }
631
+ }
632
+ };
633
+ var poll = function () {
634
+ var info = _this.pollingInfo;
635
+ if (info) {
636
+ clearTimeout(info.timeout);
637
+ info.timeout = setTimeout(maybeFetch, info.interval);
638
+ }
639
+ };
640
+ poll();
641
+ };
642
+ ObservableQuery.prototype.updateLastResult = function (newResult, variables) {
643
+ if (variables === void 0) { variables = this.variables; }
644
+ var error = this.getLastError();
645
+ if (error && this.last && !equal.equal(variables, this.last.variables)) {
646
+ error = void 0;
647
+ }
648
+ return (this.last = tslib.__assign({ result: this.queryManager.assumeImmutableResults ?
649
+ newResult
650
+ : utilities.cloneDeep(newResult), variables: variables }, (error ? { error: error } : null)));
651
+ };
652
+ ObservableQuery.prototype.reobserveAsConcast = function (newOptions, newNetworkStatus) {
653
+ var _this = this;
654
+ this.isTornDown = false;
655
+ var useDisposableConcast =
656
+ newNetworkStatus === exports.NetworkStatus.refetch ||
657
+ newNetworkStatus === exports.NetworkStatus.fetchMore ||
658
+ newNetworkStatus === exports.NetworkStatus.poll;
659
+ var oldVariables = this.options.variables;
660
+ var oldFetchPolicy = this.options.fetchPolicy;
661
+ var mergedOptions = utilities.compact(this.options, newOptions || {});
662
+ var options = useDisposableConcast ?
663
+ mergedOptions
664
+ : assign(this.options, mergedOptions);
665
+ var query = this.transformDocument(options.query);
666
+ this.lastQuery = query;
667
+ if (!useDisposableConcast) {
668
+ this.updatePolling();
669
+ if (newOptions &&
670
+ newOptions.variables &&
671
+ !equal.equal(newOptions.variables, oldVariables) &&
672
+ options.fetchPolicy !== "standby" &&
673
+ (options.fetchPolicy === oldFetchPolicy ||
674
+ typeof options.nextFetchPolicy === "function")) {
675
+ this.applyNextFetchPolicy("variables-changed", options);
676
+ if (newNetworkStatus === void 0) {
677
+ newNetworkStatus = exports.NetworkStatus.setVariables;
678
+ }
679
+ }
680
+ }
681
+ this.waitForOwnResult && (this.waitForOwnResult = skipCacheDataFor(options.fetchPolicy));
682
+ var finishWaitingForOwnResult = function () {
683
+ if (_this.concast === concast) {
684
+ _this.waitForOwnResult = false;
685
+ }
686
+ };
687
+ var variables = options.variables && tslib.__assign({}, options.variables);
688
+ var _a = this.fetch(options, newNetworkStatus, query), concast = _a.concast, fromLink = _a.fromLink;
689
+ var observer = {
690
+ next: function (result) {
691
+ if (equal.equal(_this.variables, variables)) {
692
+ finishWaitingForOwnResult();
693
+ _this.reportResult(result, variables);
694
+ }
695
+ },
696
+ error: function (error) {
697
+ if (equal.equal(_this.variables, variables)) {
698
+ if (!errors.isApolloError(error)) {
699
+ error = new errors.ApolloError({ networkError: error });
700
+ }
701
+ finishWaitingForOwnResult();
702
+ _this.reportError(error, variables);
703
+ }
704
+ },
705
+ };
706
+ if (!useDisposableConcast && (fromLink || !this.concast)) {
707
+ if (this.concast && this.observer) {
708
+ this.concast.removeObserver(this.observer);
709
+ }
710
+ this.concast = concast;
711
+ this.observer = observer;
712
+ }
713
+ concast.addObserver(observer);
714
+ return concast;
715
+ };
716
+ ObservableQuery.prototype.reobserve = function (newOptions, newNetworkStatus) {
717
+ return utilities.preventUnhandledRejection(this.reobserveAsConcast(newOptions, newNetworkStatus).promise.then(this.maskResult));
718
+ };
719
+ ObservableQuery.prototype.resubscribeAfterError = function () {
720
+ var args = [];
721
+ for (var _i = 0; _i < arguments.length; _i++) {
722
+ args[_i] = arguments[_i];
723
+ }
724
+ var last = this.last;
725
+ this.resetLastResults();
726
+ var subscription = this.subscribe.apply(this, args);
727
+ this.last = last;
728
+ return subscription;
729
+ };
730
+ ObservableQuery.prototype.observe = function () {
731
+ this.reportResult(
732
+ this.getCurrentFullResult(false), this.variables);
733
+ };
734
+ ObservableQuery.prototype.reportResult = function (result, variables) {
735
+ var lastError = this.getLastError();
736
+ var isDifferent = this.isDifferentFromLastResult(result, variables);
737
+ if (lastError || !result.partial || this.options.returnPartialData) {
738
+ this.updateLastResult(result, variables);
739
+ }
740
+ if (lastError || isDifferent) {
741
+ utilities.iterateObserversSafely(this.observers, "next", this.maskResult(result));
742
+ }
743
+ };
744
+ ObservableQuery.prototype.reportError = function (error, variables) {
745
+ var errorResult = tslib.__assign(tslib.__assign({}, this.getLastResult()), { error: error, errors: error.graphQLErrors, networkStatus: exports.NetworkStatus.error, loading: false });
746
+ this.updateLastResult(errorResult, variables);
747
+ utilities.iterateObserversSafely(this.observers, "error", (this.last.error = error));
748
+ };
749
+ ObservableQuery.prototype.hasObservers = function () {
750
+ return this.observers.size > 0;
751
+ };
752
+ ObservableQuery.prototype.tearDownQuery = function () {
753
+ if (this.isTornDown)
754
+ return;
755
+ if (this.concast && this.observer) {
756
+ this.concast.removeObserver(this.observer);
757
+ delete this.concast;
758
+ delete this.observer;
759
+ }
760
+ this.stopPolling();
761
+ this.subscriptions.forEach(function (sub) { return sub.unsubscribe(); });
762
+ this.subscriptions.clear();
763
+ this.queryManager.stopQuery(this.queryId);
764
+ this.observers.clear();
765
+ this.isTornDown = true;
766
+ };
767
+ ObservableQuery.prototype.transformDocument = function (document) {
768
+ return this.queryManager.transform(document);
769
+ };
770
+ ObservableQuery.prototype.maskResult = function (result) {
771
+ return result && "data" in result ? tslib.__assign(tslib.__assign({}, result), { data: this.queryManager.maskOperation({
772
+ document: this.query,
773
+ data: result.data,
774
+ fetchPolicy: this.options.fetchPolicy,
775
+ id: this.queryId,
776
+ }) }) : result;
777
+ };
778
+ ObservableQuery.prototype.resetNotifications = function () {
779
+ this.cancelNotifyTimeout();
780
+ this.dirty = false;
781
+ };
782
+ ObservableQuery.prototype.cancelNotifyTimeout = function () {
783
+ if (this.notifyTimeout) {
784
+ clearTimeout(this.notifyTimeout);
785
+ this.notifyTimeout = void 0;
786
+ }
787
+ };
788
+ ObservableQuery.prototype.scheduleNotify = function () {
789
+ var _this = this;
790
+ if (this.dirty)
791
+ return;
792
+ this.dirty = true;
793
+ if (!this.notifyTimeout) {
794
+ this.notifyTimeout = setTimeout(function () { return _this.notify(); }, 0);
795
+ }
796
+ };
797
+ ObservableQuery.prototype.notify = function () {
798
+ this.cancelNotifyTimeout();
799
+ if (this.dirty) {
800
+ if (this.options.fetchPolicy == "cache-only" ||
801
+ this.options.fetchPolicy == "cache-and-network" ||
802
+ !isNetworkRequestInFlight(this.queryInfo.networkStatus)) {
803
+ var diff = this.queryInfo.getDiff();
804
+ if (diff.fromOptimisticTransaction) {
805
+ this.observe();
806
+ }
807
+ else {
808
+ this.reobserveCacheFirst();
809
+ }
810
+ }
811
+ }
812
+ this.dirty = false;
813
+ };
814
+ ObservableQuery.prototype.reobserveCacheFirst = function () {
815
+ var _a = this.options, fetchPolicy = _a.fetchPolicy, nextFetchPolicy = _a.nextFetchPolicy;
816
+ if (fetchPolicy === "cache-and-network" || fetchPolicy === "network-only") {
817
+ return this.reobserve({
818
+ fetchPolicy: "cache-first",
819
+ nextFetchPolicy: function (currentFetchPolicy, context) {
820
+ this.nextFetchPolicy = nextFetchPolicy;
821
+ if (typeof this.nextFetchPolicy === "function") {
822
+ return this.nextFetchPolicy(currentFetchPolicy, context);
823
+ }
824
+ return fetchPolicy;
825
+ },
826
+ });
827
+ }
828
+ return this.reobserve();
829
+ };
830
+ ObservableQuery.inactiveOnCreation = new optimism.Slot();
831
+ return ObservableQuery;
832
+ }(utilities.Observable));
833
+ utilities.fixObservableSubclass(ObservableQuery);
834
+ function defaultSubscriptionObserverErrorCallback(error) {
835
+ globalThis.__DEV__ !== false && globals.invariant.error(25, error.message, error.stack);
836
+ }
837
+ function logMissingFieldErrors(missing) {
838
+ if (globalThis.__DEV__ !== false && missing) {
839
+ globalThis.__DEV__ !== false && globals.invariant.debug(26, missing);
840
+ }
841
+ }
842
+ function skipCacheDataFor(fetchPolicy ) {
843
+ return (fetchPolicy === "network-only" ||
844
+ fetchPolicy === "no-cache" ||
845
+ fetchPolicy === "standby");
846
+ }
847
+
848
+ var destructiveMethodCounts = new (utilities.canUseWeakMap ? WeakMap : Map)();
849
+ function wrapDestructiveCacheMethod(cache, methodName) {
850
+ var original = cache[methodName];
851
+ if (typeof original === "function") {
852
+ cache[methodName] = function () {
853
+ destructiveMethodCounts.set(cache,
854
+ (destructiveMethodCounts.get(cache) + 1) % 1e15);
855
+ return original.apply(this, arguments);
856
+ };
857
+ }
858
+ }
859
+ var QueryInfo = (function () {
860
+ function QueryInfo(queryManager, queryId) {
861
+ if (queryId === void 0) { queryId = queryManager.generateQueryId(); }
862
+ this.queryId = queryId;
863
+ this.document = null;
864
+ this.lastRequestId = 1;
865
+ this.stopped = false;
866
+ this.observableQuery = null;
867
+ var cache = (this.cache = queryManager.cache);
868
+ if (!destructiveMethodCounts.has(cache)) {
869
+ destructiveMethodCounts.set(cache, 0);
870
+ wrapDestructiveCacheMethod(cache, "evict");
871
+ wrapDestructiveCacheMethod(cache, "modify");
872
+ wrapDestructiveCacheMethod(cache, "reset");
873
+ }
874
+ }
875
+ QueryInfo.prototype.init = function (query) {
876
+ var networkStatus = query.networkStatus || exports.NetworkStatus.loading;
877
+ if (this.variables &&
878
+ this.networkStatus !== exports.NetworkStatus.loading &&
879
+ !equal.equal(this.variables, query.variables)) {
880
+ networkStatus = exports.NetworkStatus.setVariables;
881
+ }
882
+ if (!equal.equal(query.variables, this.variables)) {
883
+ this.lastDiff = void 0;
884
+ this.cancel();
885
+ }
886
+ Object.assign(this, {
887
+ document: query.document,
888
+ variables: query.variables,
889
+ networkError: null,
890
+ graphQLErrors: this.graphQLErrors || [],
891
+ networkStatus: networkStatus,
892
+ });
893
+ if (query.observableQuery) {
894
+ this.setObservableQuery(query.observableQuery);
895
+ }
896
+ if (query.lastRequestId) {
897
+ this.lastRequestId = query.lastRequestId;
898
+ }
899
+ return this;
900
+ };
901
+ QueryInfo.prototype.resetDiff = function () {
902
+ this.lastDiff = void 0;
903
+ };
904
+ QueryInfo.prototype.getDiff = function () {
905
+ var options = this.getDiffOptions();
906
+ if (this.lastDiff && equal.equal(options, this.lastDiff.options)) {
907
+ return this.lastDiff.diff;
908
+ }
909
+ this.updateWatch(this.variables);
910
+ var oq = this.observableQuery;
911
+ if (oq && oq.options.fetchPolicy === "no-cache") {
912
+ return { complete: false };
913
+ }
914
+ var diff = this.cache.diff(options);
915
+ this.updateLastDiff(diff, options);
916
+ return diff;
917
+ };
918
+ QueryInfo.prototype.updateLastDiff = function (diff, options) {
919
+ this.lastDiff =
920
+ diff ?
921
+ {
922
+ diff: diff,
923
+ options: options || this.getDiffOptions(),
924
+ }
925
+ : void 0;
926
+ };
927
+ QueryInfo.prototype.getDiffOptions = function (variables) {
928
+ var _a;
929
+ if (variables === void 0) { variables = this.variables; }
930
+ return {
931
+ query: this.document,
932
+ variables: variables,
933
+ returnPartialData: true,
934
+ optimistic: true,
935
+ canonizeResults: (_a = this.observableQuery) === null || _a === void 0 ? void 0 : _a.options.canonizeResults,
936
+ };
937
+ };
938
+ QueryInfo.prototype.setDiff = function (diff) {
939
+ var _a, _b;
940
+ var oldDiff = this.lastDiff && this.lastDiff.diff;
941
+ if (diff && !diff.complete && ((_a = this.observableQuery) === null || _a === void 0 ? void 0 : _a.getLastError())) {
942
+ return;
943
+ }
944
+ this.updateLastDiff(diff);
945
+ if (!equal.equal(oldDiff && oldDiff.result, diff && diff.result)) {
946
+ (_b = this.observableQuery) === null || _b === void 0 ? void 0 : _b["scheduleNotify"]();
947
+ }
948
+ };
949
+ QueryInfo.prototype.setObservableQuery = function (oq) {
950
+ if (oq === this.observableQuery)
951
+ return;
952
+ this.observableQuery = oq;
953
+ if (oq) {
954
+ oq["queryInfo"] = this;
955
+ }
956
+ };
957
+ QueryInfo.prototype.stop = function () {
958
+ var _a;
959
+ if (!this.stopped) {
960
+ this.stopped = true;
961
+ (_a = this.observableQuery) === null || _a === void 0 ? void 0 : _a["resetNotifications"]();
962
+ this.cancel();
963
+ var oq = this.observableQuery;
964
+ if (oq)
965
+ oq.stopPolling();
966
+ }
967
+ };
968
+ QueryInfo.prototype.cancel = function () {
969
+ var _a;
970
+ (_a = this.cancelWatch) === null || _a === void 0 ? void 0 : _a.call(this);
971
+ this.cancelWatch = void 0;
972
+ };
973
+ QueryInfo.prototype.updateWatch = function (variables) {
974
+ var _this = this;
975
+ if (variables === void 0) { variables = this.variables; }
976
+ var oq = this.observableQuery;
977
+ if (oq && oq.options.fetchPolicy === "no-cache") {
978
+ return;
979
+ }
980
+ var watchOptions = tslib.__assign(tslib.__assign({}, this.getDiffOptions(variables)), { watcher: this, callback: function (diff) { return _this.setDiff(diff); } });
981
+ if (!this.lastWatch || !equal.equal(watchOptions, this.lastWatch)) {
982
+ this.cancel();
983
+ this.cancelWatch = this.cache.watch((this.lastWatch = watchOptions));
984
+ }
985
+ };
986
+ QueryInfo.prototype.resetLastWrite = function () {
987
+ this.lastWrite = void 0;
988
+ };
989
+ QueryInfo.prototype.shouldWrite = function (result, variables) {
990
+ var lastWrite = this.lastWrite;
991
+ return !(lastWrite &&
992
+ lastWrite.dmCount === destructiveMethodCounts.get(this.cache) &&
993
+ equal.equal(variables, lastWrite.variables) &&
994
+ equal.equal(result.data, lastWrite.result.data));
995
+ };
996
+ QueryInfo.prototype.markResult = function (result, document, options, cacheWriteBehavior) {
997
+ var _this = this;
998
+ var _a;
999
+ var merger = new utilities.DeepMerger();
1000
+ var graphQLErrors = utilities.isNonEmptyArray(result.errors) ? result.errors.slice(0) : [];
1001
+ (_a = this.observableQuery) === null || _a === void 0 ? void 0 : _a["resetNotifications"]();
1002
+ if ("incremental" in result && utilities.isNonEmptyArray(result.incremental)) {
1003
+ var mergedData = utilities.mergeIncrementalData(this.getDiff().result, result);
1004
+ result.data = mergedData;
1005
+ }
1006
+ else if ("hasNext" in result && result.hasNext) {
1007
+ var diff = this.getDiff();
1008
+ result.data = merger.merge(diff.result, result.data);
1009
+ }
1010
+ this.graphQLErrors = graphQLErrors;
1011
+ if (options.fetchPolicy === "no-cache") {
1012
+ this.updateLastDiff({ result: result.data, complete: true }, this.getDiffOptions(options.variables));
1013
+ }
1014
+ else if (cacheWriteBehavior !== 0 ) {
1015
+ if (shouldWriteResult(result, options.errorPolicy)) {
1016
+ this.cache.performTransaction(function (cache) {
1017
+ if (_this.shouldWrite(result, options.variables)) {
1018
+ cache.writeQuery({
1019
+ query: document,
1020
+ data: result.data,
1021
+ variables: options.variables,
1022
+ overwrite: cacheWriteBehavior === 1 ,
1023
+ });
1024
+ _this.lastWrite = {
1025
+ result: result,
1026
+ variables: options.variables,
1027
+ dmCount: destructiveMethodCounts.get(_this.cache),
1028
+ };
1029
+ }
1030
+ else {
1031
+ if (_this.lastDiff && _this.lastDiff.diff.complete) {
1032
+ result.data = _this.lastDiff.diff.result;
1033
+ return;
1034
+ }
1035
+ }
1036
+ var diffOptions = _this.getDiffOptions(options.variables);
1037
+ var diff = cache.diff(diffOptions);
1038
+ if (!_this.stopped && equal.equal(_this.variables, options.variables)) {
1039
+ _this.updateWatch(options.variables);
1040
+ }
1041
+ _this.updateLastDiff(diff, diffOptions);
1042
+ if (diff.complete) {
1043
+ result.data = diff.result;
1044
+ }
1045
+ });
1046
+ }
1047
+ else {
1048
+ this.lastWrite = void 0;
1049
+ }
1050
+ }
1051
+ };
1052
+ QueryInfo.prototype.markReady = function () {
1053
+ this.networkError = null;
1054
+ return (this.networkStatus = exports.NetworkStatus.ready);
1055
+ };
1056
+ QueryInfo.prototype.markError = function (error) {
1057
+ var _a;
1058
+ this.networkStatus = exports.NetworkStatus.error;
1059
+ this.lastWrite = void 0;
1060
+ (_a = this.observableQuery) === null || _a === void 0 ? void 0 : _a["resetNotifications"]();
1061
+ if (error.graphQLErrors) {
1062
+ this.graphQLErrors = error.graphQLErrors;
1063
+ }
1064
+ if (error.networkError) {
1065
+ this.networkError = error.networkError;
1066
+ }
1067
+ return error;
1068
+ };
1069
+ return QueryInfo;
1070
+ }());
1071
+ function shouldWriteResult(result, errorPolicy) {
1072
+ if (errorPolicy === void 0) { errorPolicy = "none"; }
1073
+ var ignoreErrors = errorPolicy === "ignore" || errorPolicy === "all";
1074
+ var writeWithErrors = !utilities.graphQLResultHasError(result);
1075
+ if (!writeWithErrors && ignoreErrors && result.data) {
1076
+ writeWithErrors = true;
1077
+ }
1078
+ return writeWithErrors;
1079
+ }
1080
+
1081
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
1082
+ var IGNORE = Object.create(null);
1083
+ var QueryManager = (function () {
1084
+ function QueryManager(options) {
1085
+ var _this = this;
1086
+ this.clientAwareness = {};
1087
+ this.queries = new Map();
1088
+ this.fetchCancelFns = new Map();
1089
+ this.transformCache = new utilities.AutoCleanedWeakCache(utilities.cacheSizes["queryManager.getDocumentInfo"] ||
1090
+ 2000 );
1091
+ this.queryIdCounter = 1;
1092
+ this.requestIdCounter = 1;
1093
+ this.mutationIdCounter = 1;
1094
+ this.inFlightLinkObservables = new trie.Trie(false);
1095
+ this.noCacheWarningsByQueryId = new Set();
1096
+ var defaultDocumentTransform = new utilities.DocumentTransform(function (document) { return _this.cache.transformDocument(document); },
1097
+ { cache: false });
1098
+ this.cache = options.cache;
1099
+ this.link = options.link;
1100
+ this.defaultOptions = options.defaultOptions;
1101
+ this.queryDeduplication = options.queryDeduplication;
1102
+ this.clientAwareness = options.clientAwareness;
1103
+ this.localState = options.localState;
1104
+ this.ssrMode = options.ssrMode;
1105
+ this.assumeImmutableResults = options.assumeImmutableResults;
1106
+ this.dataMasking = options.dataMasking;
1107
+ var documentTransform = options.documentTransform;
1108
+ this.documentTransform =
1109
+ documentTransform ?
1110
+ defaultDocumentTransform
1111
+ .concat(documentTransform)
1112
+ .concat(defaultDocumentTransform)
1113
+ : defaultDocumentTransform;
1114
+ this.defaultContext = options.defaultContext || Object.create(null);
1115
+ if ((this.onBroadcast = options.onBroadcast)) {
1116
+ this.mutationStore = Object.create(null);
1117
+ }
1118
+ }
1119
+ QueryManager.prototype.stop = function () {
1120
+ var _this = this;
1121
+ this.queries.forEach(function (_info, queryId) {
1122
+ _this.stopQueryNoBroadcast(queryId);
1123
+ });
1124
+ this.cancelPendingFetches(globals.newInvariantError(27));
1125
+ };
1126
+ QueryManager.prototype.cancelPendingFetches = function (error) {
1127
+ this.fetchCancelFns.forEach(function (cancel) { return cancel(error); });
1128
+ this.fetchCancelFns.clear();
1129
+ };
1130
+ QueryManager.prototype.mutate = function (_a) {
1131
+ return tslib.__awaiter(this, arguments, void 0, function (_b) {
1132
+ var mutationId, hasClientExports, mutationStoreValue, isOptimistic, self;
1133
+ var _c, _d;
1134
+ var mutation = _b.mutation, variables = _b.variables, optimisticResponse = _b.optimisticResponse, updateQueries = _b.updateQueries, _e = _b.refetchQueries, refetchQueries = _e === void 0 ? [] : _e, _f = _b.awaitRefetchQueries, awaitRefetchQueries = _f === void 0 ? false : _f, updateWithProxyFn = _b.update, onQueryUpdated = _b.onQueryUpdated, _g = _b.fetchPolicy, fetchPolicy = _g === void 0 ? ((_c = this.defaultOptions.mutate) === null || _c === void 0 ? void 0 : _c.fetchPolicy) || "network-only" : _g, _h = _b.errorPolicy, errorPolicy = _h === void 0 ? ((_d = this.defaultOptions.mutate) === null || _d === void 0 ? void 0 : _d.errorPolicy) || "none" : _h, keepRootFields = _b.keepRootFields, context = _b.context;
1135
+ return tslib.__generator(this, function (_j) {
1136
+ switch (_j.label) {
1137
+ case 0:
1138
+ globals.invariant(mutation, 28);
1139
+ globals.invariant(fetchPolicy === "network-only" || fetchPolicy === "no-cache", 29);
1140
+ mutationId = this.generateMutationId();
1141
+ mutation = this.cache.transformForLink(this.transform(mutation));
1142
+ hasClientExports = this.getDocumentInfo(mutation).hasClientExports;
1143
+ variables = this.getVariables(mutation, variables);
1144
+ if (!hasClientExports) return [3 , 2];
1145
+ return [4 , this.localState.addExportedVariables(mutation, variables, context)];
1146
+ case 1:
1147
+ variables = (_j.sent());
1148
+ _j.label = 2;
1149
+ case 2:
1150
+ mutationStoreValue = this.mutationStore &&
1151
+ (this.mutationStore[mutationId] = {
1152
+ mutation: mutation,
1153
+ variables: variables,
1154
+ loading: true,
1155
+ error: null,
1156
+ });
1157
+ isOptimistic = optimisticResponse &&
1158
+ this.markMutationOptimistic(optimisticResponse, {
1159
+ mutationId: mutationId,
1160
+ document: mutation,
1161
+ variables: variables,
1162
+ fetchPolicy: fetchPolicy,
1163
+ errorPolicy: errorPolicy,
1164
+ context: context,
1165
+ updateQueries: updateQueries,
1166
+ update: updateWithProxyFn,
1167
+ keepRootFields: keepRootFields,
1168
+ });
1169
+ this.broadcastQueries();
1170
+ self = this;
1171
+ return [2 , new Promise(function (resolve, reject) {
1172
+ return utilities.asyncMap(self.getObservableFromLink(mutation, tslib.__assign(tslib.__assign({}, context), { optimisticResponse: isOptimistic ? optimisticResponse : void 0 }), variables, {}, false), function (result) {
1173
+ if (utilities.graphQLResultHasError(result) && errorPolicy === "none") {
1174
+ throw new errors.ApolloError({
1175
+ graphQLErrors: utilities.getGraphQLErrorsFromResult(result),
1176
+ });
1177
+ }
1178
+ if (mutationStoreValue) {
1179
+ mutationStoreValue.loading = false;
1180
+ mutationStoreValue.error = null;
1181
+ }
1182
+ var storeResult = tslib.__assign({}, result);
1183
+ if (typeof refetchQueries === "function") {
1184
+ refetchQueries = refetchQueries(storeResult);
1185
+ }
1186
+ if (errorPolicy === "ignore" && utilities.graphQLResultHasError(storeResult)) {
1187
+ delete storeResult.errors;
1188
+ }
1189
+ return self.markMutationResult({
1190
+ mutationId: mutationId,
1191
+ result: storeResult,
1192
+ document: mutation,
1193
+ variables: variables,
1194
+ fetchPolicy: fetchPolicy,
1195
+ errorPolicy: errorPolicy,
1196
+ context: context,
1197
+ update: updateWithProxyFn,
1198
+ updateQueries: updateQueries,
1199
+ awaitRefetchQueries: awaitRefetchQueries,
1200
+ refetchQueries: refetchQueries,
1201
+ removeOptimistic: isOptimistic ? mutationId : void 0,
1202
+ onQueryUpdated: onQueryUpdated,
1203
+ keepRootFields: keepRootFields,
1204
+ });
1205
+ }).subscribe({
1206
+ next: function (storeResult) {
1207
+ self.broadcastQueries();
1208
+ if (!("hasNext" in storeResult) || storeResult.hasNext === false) {
1209
+ resolve(tslib.__assign(tslib.__assign({}, storeResult), { data: self.maskOperation({
1210
+ document: mutation,
1211
+ data: storeResult.data,
1212
+ fetchPolicy: fetchPolicy,
1213
+ id: mutationId,
1214
+ }) }));
1215
+ }
1216
+ },
1217
+ error: function (err) {
1218
+ if (mutationStoreValue) {
1219
+ mutationStoreValue.loading = false;
1220
+ mutationStoreValue.error = err;
1221
+ }
1222
+ if (isOptimistic) {
1223
+ self.cache.removeOptimistic(mutationId);
1224
+ }
1225
+ self.broadcastQueries();
1226
+ reject(err instanceof errors.ApolloError ? err : (new errors.ApolloError({
1227
+ networkError: err,
1228
+ })));
1229
+ },
1230
+ });
1231
+ })];
1232
+ }
1233
+ });
1234
+ });
1235
+ };
1236
+ QueryManager.prototype.markMutationResult = function (mutation, cache) {
1237
+ var _this = this;
1238
+ if (cache === void 0) { cache = this.cache; }
1239
+ var result = mutation.result;
1240
+ var cacheWrites = [];
1241
+ var skipCache = mutation.fetchPolicy === "no-cache";
1242
+ if (!skipCache && shouldWriteResult(result, mutation.errorPolicy)) {
1243
+ if (!utilities.isExecutionPatchIncrementalResult(result)) {
1244
+ cacheWrites.push({
1245
+ result: result.data,
1246
+ dataId: "ROOT_MUTATION",
1247
+ query: mutation.document,
1248
+ variables: mutation.variables,
1249
+ });
1250
+ }
1251
+ if (utilities.isExecutionPatchIncrementalResult(result) &&
1252
+ utilities.isNonEmptyArray(result.incremental)) {
1253
+ var diff = cache.diff({
1254
+ id: "ROOT_MUTATION",
1255
+ query: this.getDocumentInfo(mutation.document).asQuery,
1256
+ variables: mutation.variables,
1257
+ optimistic: false,
1258
+ returnPartialData: true,
1259
+ });
1260
+ var mergedData = void 0;
1261
+ if (diff.result) {
1262
+ mergedData = mergeIncrementalData(diff.result, result);
1263
+ }
1264
+ if (typeof mergedData !== "undefined") {
1265
+ result.data = mergedData;
1266
+ cacheWrites.push({
1267
+ result: mergedData,
1268
+ dataId: "ROOT_MUTATION",
1269
+ query: mutation.document,
1270
+ variables: mutation.variables,
1271
+ });
1272
+ }
1273
+ }
1274
+ var updateQueries_1 = mutation.updateQueries;
1275
+ if (updateQueries_1) {
1276
+ this.queries.forEach(function (_a, queryId) {
1277
+ var observableQuery = _a.observableQuery;
1278
+ var queryName = observableQuery && observableQuery.queryName;
1279
+ if (!queryName || !hasOwnProperty.call(updateQueries_1, queryName)) {
1280
+ return;
1281
+ }
1282
+ var updater = updateQueries_1[queryName];
1283
+ var _b = _this.queries.get(queryId), document = _b.document, variables = _b.variables;
1284
+ var _c = cache.diff({
1285
+ query: document,
1286
+ variables: variables,
1287
+ returnPartialData: true,
1288
+ optimistic: false,
1289
+ }), currentQueryResult = _c.result, complete = _c.complete;
1290
+ if (complete && currentQueryResult) {
1291
+ var nextQueryResult = updater(currentQueryResult, {
1292
+ mutationResult: result,
1293
+ queryName: (document && utilities.getOperationName(document)) || void 0,
1294
+ queryVariables: variables,
1295
+ });
1296
+ if (nextQueryResult) {
1297
+ cacheWrites.push({
1298
+ result: nextQueryResult,
1299
+ dataId: "ROOT_QUERY",
1300
+ query: document,
1301
+ variables: variables,
1302
+ });
1303
+ }
1304
+ }
1305
+ });
1306
+ }
1307
+ }
1308
+ if (cacheWrites.length > 0 ||
1309
+ (mutation.refetchQueries || "").length > 0 ||
1310
+ mutation.update ||
1311
+ mutation.onQueryUpdated ||
1312
+ mutation.removeOptimistic) {
1313
+ var results_1 = [];
1314
+ this.refetchQueries({
1315
+ updateCache: function (cache) {
1316
+ if (!skipCache) {
1317
+ cacheWrites.forEach(function (write) { return cache.write(write); });
1318
+ }
1319
+ var update = mutation.update;
1320
+ var isFinalResult = !utilities.isExecutionPatchResult(result) ||
1321
+ (utilities.isExecutionPatchIncrementalResult(result) && !result.hasNext);
1322
+ if (update) {
1323
+ if (!skipCache) {
1324
+ var diff = cache.diff({
1325
+ id: "ROOT_MUTATION",
1326
+ query: _this.getDocumentInfo(mutation.document).asQuery,
1327
+ variables: mutation.variables,
1328
+ optimistic: false,
1329
+ returnPartialData: true,
1330
+ });
1331
+ if (diff.complete) {
1332
+ result = tslib.__assign(tslib.__assign({}, result), { data: diff.result });
1333
+ if ("incremental" in result) {
1334
+ delete result.incremental;
1335
+ }
1336
+ if ("hasNext" in result) {
1337
+ delete result.hasNext;
1338
+ }
1339
+ }
1340
+ }
1341
+ if (isFinalResult) {
1342
+ update(cache, result, {
1343
+ context: mutation.context,
1344
+ variables: mutation.variables,
1345
+ });
1346
+ }
1347
+ }
1348
+ if (!skipCache && !mutation.keepRootFields && isFinalResult) {
1349
+ cache.modify({
1350
+ id: "ROOT_MUTATION",
1351
+ fields: function (value, _a) {
1352
+ var fieldName = _a.fieldName, DELETE = _a.DELETE;
1353
+ return fieldName === "__typename" ? value : DELETE;
1354
+ },
1355
+ });
1356
+ }
1357
+ },
1358
+ include: mutation.refetchQueries,
1359
+ optimistic: false,
1360
+ removeOptimistic: mutation.removeOptimistic,
1361
+ onQueryUpdated: mutation.onQueryUpdated || null,
1362
+ }).forEach(function (result) { return results_1.push(result); });
1363
+ if (mutation.awaitRefetchQueries || mutation.onQueryUpdated) {
1364
+ return Promise.all(results_1).then(function () { return result; });
1365
+ }
1366
+ }
1367
+ return Promise.resolve(result);
1368
+ };
1369
+ QueryManager.prototype.markMutationOptimistic = function (optimisticResponse, mutation) {
1370
+ var _this = this;
1371
+ var data = typeof optimisticResponse === "function" ?
1372
+ optimisticResponse(mutation.variables, { IGNORE: IGNORE })
1373
+ : optimisticResponse;
1374
+ if (data === IGNORE) {
1375
+ return false;
1376
+ }
1377
+ this.cache.recordOptimisticTransaction(function (cache) {
1378
+ try {
1379
+ _this.markMutationResult(tslib.__assign(tslib.__assign({}, mutation), { result: { data: data } }), cache);
1380
+ }
1381
+ catch (error) {
1382
+ globalThis.__DEV__ !== false && globals.invariant.error(error);
1383
+ }
1384
+ }, mutation.mutationId);
1385
+ return true;
1386
+ };
1387
+ QueryManager.prototype.fetchQuery = function (queryId, options, networkStatus) {
1388
+ return this.fetchConcastWithInfo(this.getOrCreateQuery(queryId), options, networkStatus).concast.promise;
1389
+ };
1390
+ QueryManager.prototype.getQueryStore = function () {
1391
+ var store = Object.create(null);
1392
+ this.queries.forEach(function (info, queryId) {
1393
+ store[queryId] = {
1394
+ variables: info.variables,
1395
+ networkStatus: info.networkStatus,
1396
+ networkError: info.networkError,
1397
+ graphQLErrors: info.graphQLErrors,
1398
+ };
1399
+ });
1400
+ return store;
1401
+ };
1402
+ QueryManager.prototype.resetErrors = function (queryId) {
1403
+ var queryInfo = this.queries.get(queryId);
1404
+ if (queryInfo) {
1405
+ queryInfo.networkError = undefined;
1406
+ queryInfo.graphQLErrors = [];
1407
+ }
1408
+ };
1409
+ QueryManager.prototype.transform = function (document) {
1410
+ return this.documentTransform.transformDocument(document);
1411
+ };
1412
+ QueryManager.prototype.getDocumentInfo = function (document) {
1413
+ var transformCache = this.transformCache;
1414
+ if (!transformCache.has(document)) {
1415
+ var cacheEntry = {
1416
+ hasClientExports: utilities.hasClientExports(document),
1417
+ hasForcedResolvers: this.localState.shouldForceResolvers(document),
1418
+ hasNonreactiveDirective: utilities.hasDirectives(["nonreactive"], document),
1419
+ nonReactiveQuery: utilities.addNonReactiveToNamedFragments(document),
1420
+ clientQuery: this.localState.clientQuery(document),
1421
+ serverQuery: utilities.removeDirectivesFromDocument([
1422
+ { name: "client", remove: true },
1423
+ { name: "connection" },
1424
+ { name: "nonreactive" },
1425
+ { name: "unmask" },
1426
+ ], document),
1427
+ defaultVars: utilities.getDefaultValues(utilities.getOperationDefinition(document)),
1428
+ asQuery: tslib.__assign(tslib.__assign({}, document), { definitions: document.definitions.map(function (def) {
1429
+ if (def.kind === "OperationDefinition" &&
1430
+ def.operation !== "query") {
1431
+ return tslib.__assign(tslib.__assign({}, def), { operation: "query" });
1432
+ }
1433
+ return def;
1434
+ }) }),
1435
+ };
1436
+ transformCache.set(document, cacheEntry);
1437
+ }
1438
+ return transformCache.get(document);
1439
+ };
1440
+ QueryManager.prototype.getVariables = function (document, variables) {
1441
+ return tslib.__assign(tslib.__assign({}, this.getDocumentInfo(document).defaultVars), variables);
1442
+ };
1443
+ QueryManager.prototype.watchQuery = function (options) {
1444
+ var query = this.transform(options.query);
1445
+ options = tslib.__assign(tslib.__assign({}, options), { variables: this.getVariables(query, options.variables) });
1446
+ if (typeof options.notifyOnNetworkStatusChange === "undefined") {
1447
+ options.notifyOnNetworkStatusChange = false;
1448
+ }
1449
+ var queryInfo = new QueryInfo(this);
1450
+ var observable = new ObservableQuery({
1451
+ queryManager: this,
1452
+ queryInfo: queryInfo,
1453
+ options: options,
1454
+ });
1455
+ observable["lastQuery"] = query;
1456
+ if (!ObservableQuery["inactiveOnCreation"].getValue()) {
1457
+ this.queries.set(observable.queryId, queryInfo);
1458
+ }
1459
+ queryInfo.init({
1460
+ document: query,
1461
+ observableQuery: observable,
1462
+ variables: observable.variables,
1463
+ });
1464
+ return observable;
1465
+ };
1466
+ QueryManager.prototype.query = function (options, queryId) {
1467
+ var _this = this;
1468
+ if (queryId === void 0) { queryId = this.generateQueryId(); }
1469
+ globals.invariant(options.query, 30);
1470
+ globals.invariant(options.query.kind === "Document", 31);
1471
+ globals.invariant(!options.returnPartialData, 32);
1472
+ globals.invariant(!options.pollInterval, 33);
1473
+ var query = this.transform(options.query);
1474
+ return this.fetchQuery(queryId, tslib.__assign(tslib.__assign({}, options), { query: query }))
1475
+ .then(function (result) {
1476
+ return result && tslib.__assign(tslib.__assign({}, result), { data: _this.maskOperation({
1477
+ document: query,
1478
+ data: result.data,
1479
+ fetchPolicy: options.fetchPolicy,
1480
+ id: queryId,
1481
+ }) });
1482
+ })
1483
+ .finally(function () { return _this.stopQuery(queryId); });
1484
+ };
1485
+ QueryManager.prototype.generateQueryId = function () {
1486
+ return String(this.queryIdCounter++);
1487
+ };
1488
+ QueryManager.prototype.generateRequestId = function () {
1489
+ return this.requestIdCounter++;
1490
+ };
1491
+ QueryManager.prototype.generateMutationId = function () {
1492
+ return String(this.mutationIdCounter++);
1493
+ };
1494
+ QueryManager.prototype.stopQueryInStore = function (queryId) {
1495
+ this.stopQueryInStoreNoBroadcast(queryId);
1496
+ this.broadcastQueries();
1497
+ };
1498
+ QueryManager.prototype.stopQueryInStoreNoBroadcast = function (queryId) {
1499
+ var queryInfo = this.queries.get(queryId);
1500
+ if (queryInfo)
1501
+ queryInfo.stop();
1502
+ };
1503
+ QueryManager.prototype.clearStore = function (options) {
1504
+ if (options === void 0) { options = {
1505
+ discardWatches: true,
1506
+ }; }
1507
+ this.cancelPendingFetches(globals.newInvariantError(34));
1508
+ this.queries.forEach(function (queryInfo) {
1509
+ if (queryInfo.observableQuery) {
1510
+ queryInfo.networkStatus = exports.NetworkStatus.loading;
1511
+ }
1512
+ else {
1513
+ queryInfo.stop();
1514
+ }
1515
+ });
1516
+ if (this.mutationStore) {
1517
+ this.mutationStore = Object.create(null);
1518
+ }
1519
+ return this.cache.reset(options);
1520
+ };
1521
+ QueryManager.prototype.getObservableQueries = function (include) {
1522
+ var _this = this;
1523
+ if (include === void 0) { include = "active"; }
1524
+ var queries = new Map();
1525
+ var queryNames = new Map();
1526
+ var queryNamesAndQueryStrings = new Map();
1527
+ var legacyQueryOptions = new Set();
1528
+ if (Array.isArray(include)) {
1529
+ include.forEach(function (desc) {
1530
+ if (typeof desc === "string") {
1531
+ queryNames.set(desc, desc);
1532
+ queryNamesAndQueryStrings.set(desc, false);
1533
+ }
1534
+ else if (utilities.isDocumentNode(desc)) {
1535
+ var queryString = utilities.print(_this.transform(desc));
1536
+ queryNames.set(queryString, utilities.getOperationName(desc));
1537
+ queryNamesAndQueryStrings.set(queryString, false);
1538
+ }
1539
+ else if (utilities.isNonNullObject(desc) && desc.query) {
1540
+ legacyQueryOptions.add(desc);
1541
+ }
1542
+ });
1543
+ }
1544
+ this.queries.forEach(function (_a, queryId) {
1545
+ var oq = _a.observableQuery, document = _a.document;
1546
+ if (oq) {
1547
+ if (include === "all") {
1548
+ queries.set(queryId, oq);
1549
+ return;
1550
+ }
1551
+ var queryName = oq.queryName, fetchPolicy = oq.options.fetchPolicy;
1552
+ if (fetchPolicy === "standby" ||
1553
+ (include === "active" && !oq.hasObservers())) {
1554
+ return;
1555
+ }
1556
+ if (include === "active" ||
1557
+ (queryName && queryNamesAndQueryStrings.has(queryName)) ||
1558
+ (document && queryNamesAndQueryStrings.has(utilities.print(document)))) {
1559
+ queries.set(queryId, oq);
1560
+ if (queryName)
1561
+ queryNamesAndQueryStrings.set(queryName, true);
1562
+ if (document)
1563
+ queryNamesAndQueryStrings.set(utilities.print(document), true);
1564
+ }
1565
+ }
1566
+ });
1567
+ if (legacyQueryOptions.size) {
1568
+ legacyQueryOptions.forEach(function (options) {
1569
+ var queryId = utilities.makeUniqueId("legacyOneTimeQuery");
1570
+ var queryInfo = _this.getOrCreateQuery(queryId).init({
1571
+ document: options.query,
1572
+ variables: options.variables,
1573
+ });
1574
+ var oq = new ObservableQuery({
1575
+ queryManager: _this,
1576
+ queryInfo: queryInfo,
1577
+ options: tslib.__assign(tslib.__assign({}, options), { fetchPolicy: "network-only" }),
1578
+ });
1579
+ globals.invariant(oq.queryId === queryId);
1580
+ queryInfo.setObservableQuery(oq);
1581
+ queries.set(queryId, oq);
1582
+ });
1583
+ }
1584
+ if (globalThis.__DEV__ !== false && queryNamesAndQueryStrings.size) {
1585
+ queryNamesAndQueryStrings.forEach(function (included, nameOrQueryString) {
1586
+ if (!included) {
1587
+ var queryName = queryNames.get(nameOrQueryString);
1588
+ if (queryName) {
1589
+ globalThis.__DEV__ !== false && globals.invariant.warn(35, queryName);
1590
+ }
1591
+ else {
1592
+ globalThis.__DEV__ !== false && globals.invariant.warn(36);
1593
+ }
1594
+ }
1595
+ });
1596
+ }
1597
+ return queries;
1598
+ };
1599
+ QueryManager.prototype.reFetchObservableQueries = function (includeStandby) {
1600
+ var _this = this;
1601
+ if (includeStandby === void 0) { includeStandby = false; }
1602
+ var observableQueryPromises = [];
1603
+ this.getObservableQueries(includeStandby ? "all" : "active").forEach(function (observableQuery, queryId) {
1604
+ var fetchPolicy = observableQuery.options.fetchPolicy;
1605
+ observableQuery.resetLastResults();
1606
+ if (includeStandby ||
1607
+ (fetchPolicy !== "standby" && fetchPolicy !== "cache-only")) {
1608
+ observableQueryPromises.push(observableQuery.refetch());
1609
+ }
1610
+ (_this.queries.get(queryId) || observableQuery["queryInfo"]).setDiff(null);
1611
+ });
1612
+ this.broadcastQueries();
1613
+ return Promise.all(observableQueryPromises);
1614
+ };
1615
+ QueryManager.prototype.startGraphQLSubscription = function (options) {
1616
+ var _this = this;
1617
+ var query = options.query, variables = options.variables;
1618
+ var fetchPolicy = options.fetchPolicy, _a = options.errorPolicy, errorPolicy = _a === void 0 ? "none" : _a, _b = options.context, context = _b === void 0 ? {} : _b, _c = options.extensions, extensions = _c === void 0 ? {} : _c;
1619
+ query = this.transform(query);
1620
+ variables = this.getVariables(query, variables);
1621
+ var makeObservable = function (variables) {
1622
+ return _this.getObservableFromLink(query, context, variables, extensions).map(function (result) {
1623
+ if (fetchPolicy !== "no-cache") {
1624
+ if (shouldWriteResult(result, errorPolicy)) {
1625
+ _this.cache.write({
1626
+ query: query,
1627
+ result: result.data,
1628
+ dataId: "ROOT_SUBSCRIPTION",
1629
+ variables: variables,
1630
+ });
1631
+ }
1632
+ _this.broadcastQueries();
1633
+ }
1634
+ var hasErrors = utilities.graphQLResultHasError(result);
1635
+ var hasProtocolErrors = errors.graphQLResultHasProtocolErrors(result);
1636
+ if (hasErrors || hasProtocolErrors) {
1637
+ var errors$1 = {};
1638
+ if (hasErrors) {
1639
+ errors$1.graphQLErrors = result.errors;
1640
+ }
1641
+ if (hasProtocolErrors) {
1642
+ errors$1.protocolErrors = result.extensions[errors.PROTOCOL_ERRORS_SYMBOL];
1643
+ }
1644
+ if (errorPolicy === "none" || hasProtocolErrors) {
1645
+ throw new errors.ApolloError(errors$1);
1646
+ }
1647
+ }
1648
+ if (errorPolicy === "ignore") {
1649
+ delete result.errors;
1650
+ }
1651
+ return result;
1652
+ });
1653
+ };
1654
+ if (this.getDocumentInfo(query).hasClientExports) {
1655
+ var observablePromise_1 = this.localState
1656
+ .addExportedVariables(query, variables, context)
1657
+ .then(makeObservable);
1658
+ return new utilities.Observable(function (observer) {
1659
+ var sub = null;
1660
+ observablePromise_1.then(function (observable) { return (sub = observable.subscribe(observer)); }, observer.error);
1661
+ return function () { return sub && sub.unsubscribe(); };
1662
+ });
1663
+ }
1664
+ return makeObservable(variables);
1665
+ };
1666
+ QueryManager.prototype.stopQuery = function (queryId) {
1667
+ this.stopQueryNoBroadcast(queryId);
1668
+ this.broadcastQueries();
1669
+ };
1670
+ QueryManager.prototype.stopQueryNoBroadcast = function (queryId) {
1671
+ this.stopQueryInStoreNoBroadcast(queryId);
1672
+ this.removeQuery(queryId);
1673
+ };
1674
+ QueryManager.prototype.removeQuery = function (queryId) {
1675
+ var _a;
1676
+ this.fetchCancelFns.delete(queryId);
1677
+ if (this.queries.has(queryId)) {
1678
+ (_a = this.queries.get(queryId)) === null || _a === void 0 ? void 0 : _a.stop();
1679
+ this.queries.delete(queryId);
1680
+ }
1681
+ };
1682
+ QueryManager.prototype.broadcastQueries = function () {
1683
+ if (this.onBroadcast)
1684
+ this.onBroadcast();
1685
+ this.queries.forEach(function (info) { var _a; return (_a = info.observableQuery) === null || _a === void 0 ? void 0 : _a["notify"](); });
1686
+ };
1687
+ QueryManager.prototype.getLocalState = function () {
1688
+ return this.localState;
1689
+ };
1690
+ QueryManager.prototype.getObservableFromLink = function (query, context, variables, extensions,
1691
+ deduplication) {
1692
+ var _this = this;
1693
+ var _a;
1694
+ if (deduplication === void 0) { deduplication = (_a = context === null || context === void 0 ? void 0 : context.queryDeduplication) !== null && _a !== void 0 ? _a : this.queryDeduplication; }
1695
+ var observable;
1696
+ var _b = this.getDocumentInfo(query), serverQuery = _b.serverQuery, clientQuery = _b.clientQuery;
1697
+ if (serverQuery) {
1698
+ var _c = this, inFlightLinkObservables_1 = _c.inFlightLinkObservables, link = _c.link;
1699
+ var operation = {
1700
+ query: serverQuery,
1701
+ variables: variables,
1702
+ operationName: utilities.getOperationName(serverQuery) || void 0,
1703
+ context: this.prepareContext(tslib.__assign(tslib.__assign({}, context), { forceFetch: !deduplication })),
1704
+ extensions: extensions,
1705
+ };
1706
+ context = operation.context;
1707
+ if (deduplication) {
1708
+ var printedServerQuery_1 = utilities.print(serverQuery);
1709
+ var varJson_1 = cache.canonicalStringify(variables);
1710
+ var entry = inFlightLinkObservables_1.lookup(printedServerQuery_1, varJson_1);
1711
+ observable = entry.observable;
1712
+ if (!observable) {
1713
+ var concast_1 = new utilities.Concast([
1714
+ core.execute(link, operation),
1715
+ ]);
1716
+ observable = entry.observable = concast_1;
1717
+ concast_1.beforeNext(function cb(method, arg) {
1718
+ if (method === "next" && "hasNext" in arg && arg.hasNext) {
1719
+ concast_1.beforeNext(cb);
1720
+ }
1721
+ else {
1722
+ inFlightLinkObservables_1.remove(printedServerQuery_1, varJson_1);
1723
+ }
1724
+ });
1725
+ }
1726
+ }
1727
+ else {
1728
+ observable = new utilities.Concast([
1729
+ core.execute(link, operation),
1730
+ ]);
1731
+ }
1732
+ }
1733
+ else {
1734
+ observable = new utilities.Concast([utilities.Observable.of({ data: {} })]);
1735
+ context = this.prepareContext(context);
1736
+ }
1737
+ if (clientQuery) {
1738
+ observable = utilities.asyncMap(observable, function (result) {
1739
+ return _this.localState.runResolvers({
1740
+ document: clientQuery,
1741
+ remoteResult: result,
1742
+ context: context,
1743
+ variables: variables,
1744
+ });
1745
+ });
1746
+ }
1747
+ return observable;
1748
+ };
1749
+ QueryManager.prototype.getResultsFromLink = function (queryInfo, cacheWriteBehavior, options) {
1750
+ var requestId = (queryInfo.lastRequestId = this.generateRequestId());
1751
+ var linkDocument = this.cache.transformForLink(options.query);
1752
+ return utilities.asyncMap(this.getObservableFromLink(linkDocument, options.context, options.variables), function (result) {
1753
+ var graphQLErrors = utilities.getGraphQLErrorsFromResult(result);
1754
+ var hasErrors = graphQLErrors.length > 0;
1755
+ var errorPolicy = options.errorPolicy;
1756
+ if (requestId >= queryInfo.lastRequestId) {
1757
+ if (hasErrors && errorPolicy === "none") {
1758
+ throw queryInfo.markError(new errors.ApolloError({
1759
+ graphQLErrors: graphQLErrors,
1760
+ }));
1761
+ }
1762
+ queryInfo.markResult(result, linkDocument, options, cacheWriteBehavior);
1763
+ queryInfo.markReady();
1764
+ }
1765
+ var aqr = {
1766
+ data: result.data,
1767
+ loading: false,
1768
+ networkStatus: exports.NetworkStatus.ready,
1769
+ };
1770
+ if (hasErrors && errorPolicy === "none") {
1771
+ aqr.data = void 0;
1772
+ }
1773
+ if (hasErrors && errorPolicy !== "ignore") {
1774
+ aqr.errors = graphQLErrors;
1775
+ aqr.networkStatus = exports.NetworkStatus.error;
1776
+ }
1777
+ return aqr;
1778
+ }, function (networkError) {
1779
+ var error = errors.isApolloError(networkError) ? networkError : (new errors.ApolloError({ networkError: networkError }));
1780
+ if (requestId >= queryInfo.lastRequestId) {
1781
+ queryInfo.markError(error);
1782
+ }
1783
+ throw error;
1784
+ });
1785
+ };
1786
+ QueryManager.prototype.fetchConcastWithInfo = function (queryInfo, options,
1787
+ networkStatus, query) {
1788
+ var _this = this;
1789
+ if (networkStatus === void 0) { networkStatus = exports.NetworkStatus.loading; }
1790
+ if (query === void 0) { query = options.query; }
1791
+ var variables = this.getVariables(query, options.variables);
1792
+ var defaults = this.defaultOptions.watchQuery;
1793
+ var _a = options.fetchPolicy, fetchPolicy = _a === void 0 ? (defaults && defaults.fetchPolicy) || "cache-first" : _a, _b = options.errorPolicy, errorPolicy = _b === void 0 ? (defaults && defaults.errorPolicy) || "none" : _b, _c = options.returnPartialData, returnPartialData = _c === void 0 ? false : _c, _d = options.notifyOnNetworkStatusChange, notifyOnNetworkStatusChange = _d === void 0 ? false : _d, _e = options.context, context = _e === void 0 ? {} : _e;
1794
+ var normalized = Object.assign({}, options, {
1795
+ query: query,
1796
+ variables: variables,
1797
+ fetchPolicy: fetchPolicy,
1798
+ errorPolicy: errorPolicy,
1799
+ returnPartialData: returnPartialData,
1800
+ notifyOnNetworkStatusChange: notifyOnNetworkStatusChange,
1801
+ context: context,
1802
+ });
1803
+ var fromVariables = function (variables) {
1804
+ normalized.variables = variables;
1805
+ var sourcesWithInfo = _this.fetchQueryByPolicy(queryInfo, normalized, networkStatus);
1806
+ if (
1807
+ normalized.fetchPolicy !== "standby" &&
1808
+ sourcesWithInfo.sources.length > 0 &&
1809
+ queryInfo.observableQuery) {
1810
+ queryInfo.observableQuery["applyNextFetchPolicy"]("after-fetch", options);
1811
+ }
1812
+ return sourcesWithInfo;
1813
+ };
1814
+ var cleanupCancelFn = function () { return _this.fetchCancelFns.delete(queryInfo.queryId); };
1815
+ this.fetchCancelFns.set(queryInfo.queryId, function (reason) {
1816
+ cleanupCancelFn();
1817
+ setTimeout(function () { return concast.cancel(reason); });
1818
+ });
1819
+ var concast, containsDataFromLink;
1820
+ if (this.getDocumentInfo(normalized.query).hasClientExports) {
1821
+ concast = new utilities.Concast(this.localState
1822
+ .addExportedVariables(normalized.query, normalized.variables, normalized.context)
1823
+ .then(fromVariables)
1824
+ .then(function (sourcesWithInfo) { return sourcesWithInfo.sources; }));
1825
+ containsDataFromLink = true;
1826
+ }
1827
+ else {
1828
+ var sourcesWithInfo = fromVariables(normalized.variables);
1829
+ containsDataFromLink = sourcesWithInfo.fromLink;
1830
+ concast = new utilities.Concast(sourcesWithInfo.sources);
1831
+ }
1832
+ concast.promise.then(cleanupCancelFn, cleanupCancelFn);
1833
+ return {
1834
+ concast: concast,
1835
+ fromLink: containsDataFromLink,
1836
+ };
1837
+ };
1838
+ QueryManager.prototype.refetchQueries = function (_a) {
1839
+ var _this = this;
1840
+ var updateCache = _a.updateCache, include = _a.include, _b = _a.optimistic, optimistic = _b === void 0 ? false : _b, _c = _a.removeOptimistic, removeOptimistic = _c === void 0 ? optimistic ? utilities.makeUniqueId("refetchQueries") : void 0 : _c, onQueryUpdated = _a.onQueryUpdated;
1841
+ var includedQueriesById = new Map();
1842
+ if (include) {
1843
+ this.getObservableQueries(include).forEach(function (oq, queryId) {
1844
+ includedQueriesById.set(queryId, {
1845
+ oq: oq,
1846
+ lastDiff: (_this.queries.get(queryId) || oq["queryInfo"]).getDiff(),
1847
+ });
1848
+ });
1849
+ }
1850
+ var results = new Map();
1851
+ if (updateCache) {
1852
+ this.cache.batch({
1853
+ update: updateCache,
1854
+ optimistic: (optimistic && removeOptimistic) || false,
1855
+ removeOptimistic: removeOptimistic,
1856
+ onWatchUpdated: function (watch, diff, lastDiff) {
1857
+ var oq = watch.watcher instanceof QueryInfo && watch.watcher.observableQuery;
1858
+ if (oq) {
1859
+ if (onQueryUpdated) {
1860
+ includedQueriesById.delete(oq.queryId);
1861
+ var result = onQueryUpdated(oq, diff, lastDiff);
1862
+ if (result === true) {
1863
+ result = oq.refetch();
1864
+ }
1865
+ if (result !== false) {
1866
+ results.set(oq, result);
1867
+ }
1868
+ return result;
1869
+ }
1870
+ if (onQueryUpdated !== null) {
1871
+ includedQueriesById.set(oq.queryId, { oq: oq, lastDiff: lastDiff, diff: diff });
1872
+ }
1873
+ }
1874
+ },
1875
+ });
1876
+ }
1877
+ if (includedQueriesById.size) {
1878
+ includedQueriesById.forEach(function (_a, queryId) {
1879
+ var oq = _a.oq, lastDiff = _a.lastDiff, diff = _a.diff;
1880
+ var result;
1881
+ if (onQueryUpdated) {
1882
+ if (!diff) {
1883
+ diff = _this.cache.diff(oq["queryInfo"]["getDiffOptions"]());
1884
+ }
1885
+ result = onQueryUpdated(oq, diff, lastDiff);
1886
+ }
1887
+ if (!onQueryUpdated || result === true) {
1888
+ result = oq.refetch();
1889
+ }
1890
+ if (result !== false) {
1891
+ results.set(oq, result);
1892
+ }
1893
+ if (queryId.indexOf("legacyOneTimeQuery") >= 0) {
1894
+ _this.stopQueryNoBroadcast(queryId);
1895
+ }
1896
+ });
1897
+ }
1898
+ if (removeOptimistic) {
1899
+ this.cache.removeOptimistic(removeOptimistic);
1900
+ }
1901
+ return results;
1902
+ };
1903
+ QueryManager.prototype.maskOperation = function (options) {
1904
+ var _a, _b, _c;
1905
+ var document = options.document, data = options.data;
1906
+ if (globalThis.__DEV__ !== false) {
1907
+ var fetchPolicy = options.fetchPolicy, id = options.id;
1908
+ var operationType = (_a = utilities.getOperationDefinition(document)) === null || _a === void 0 ? void 0 : _a.operation;
1909
+ var operationId = ((_b = operationType === null || operationType === void 0 ? void 0 : operationType[0]) !== null && _b !== void 0 ? _b : "o") + id;
1910
+ if (this.dataMasking &&
1911
+ fetchPolicy === "no-cache" &&
1912
+ !utilities.isFullyUnmaskedOperation(document) &&
1913
+ !this.noCacheWarningsByQueryId.has(operationId)) {
1914
+ this.noCacheWarningsByQueryId.add(operationId);
1915
+ globalThis.__DEV__ !== false && globals.invariant.warn(
1916
+ 37,
1917
+ (_c = utilities.getOperationName(document)) !== null && _c !== void 0 ? _c : "Unnamed ".concat(operationType !== null && operationType !== void 0 ? operationType : "operation")
1918
+ );
1919
+ }
1920
+ }
1921
+ return (this.dataMasking ?
1922
+ masking.maskOperation(data, document, this.cache)
1923
+ : data);
1924
+ };
1925
+ QueryManager.prototype.maskFragment = function (options) {
1926
+ var data = options.data, fragment = options.fragment, fragmentName = options.fragmentName;
1927
+ return this.dataMasking ?
1928
+ masking.maskFragment(data, fragment, this.cache, fragmentName)
1929
+ : data;
1930
+ };
1931
+ QueryManager.prototype.fetchQueryByPolicy = function (queryInfo, _a,
1932
+ networkStatus) {
1933
+ var _this = this;
1934
+ var query = _a.query, variables = _a.variables, fetchPolicy = _a.fetchPolicy, refetchWritePolicy = _a.refetchWritePolicy, errorPolicy = _a.errorPolicy, returnPartialData = _a.returnPartialData, context = _a.context, notifyOnNetworkStatusChange = _a.notifyOnNetworkStatusChange;
1935
+ var oldNetworkStatus = queryInfo.networkStatus;
1936
+ queryInfo.init({
1937
+ document: query,
1938
+ variables: variables,
1939
+ networkStatus: networkStatus,
1940
+ });
1941
+ var readCache = function () { return queryInfo.getDiff(); };
1942
+ var resultsFromCache = function (diff, networkStatus) {
1943
+ if (networkStatus === void 0) { networkStatus = queryInfo.networkStatus || exports.NetworkStatus.loading; }
1944
+ var data = diff.result;
1945
+ if (globalThis.__DEV__ !== false && !returnPartialData && !equal.equal(data, {})) {
1946
+ logMissingFieldErrors(diff.missing);
1947
+ }
1948
+ var fromData = function (data) {
1949
+ return utilities.Observable.of(tslib.__assign({ data: data, loading: isNetworkRequestInFlight(networkStatus), networkStatus: networkStatus }, (diff.complete ? null : { partial: true })));
1950
+ };
1951
+ if (data && _this.getDocumentInfo(query).hasForcedResolvers) {
1952
+ return _this.localState
1953
+ .runResolvers({
1954
+ document: query,
1955
+ remoteResult: { data: data },
1956
+ context: context,
1957
+ variables: variables,
1958
+ onlyRunForcedResolvers: true,
1959
+ })
1960
+ .then(function (resolved) { return fromData(resolved.data || void 0); });
1961
+ }
1962
+ if (errorPolicy === "none" &&
1963
+ networkStatus === exports.NetworkStatus.refetch &&
1964
+ Array.isArray(diff.missing)) {
1965
+ return fromData(void 0);
1966
+ }
1967
+ return fromData(data);
1968
+ };
1969
+ var cacheWriteBehavior = fetchPolicy === "no-cache" ? 0
1970
+ : (networkStatus === exports.NetworkStatus.refetch &&
1971
+ refetchWritePolicy !== "merge") ?
1972
+ 1
1973
+ : 2 ;
1974
+ var resultsFromLink = function () {
1975
+ return _this.getResultsFromLink(queryInfo, cacheWriteBehavior, {
1976
+ query: query,
1977
+ variables: variables,
1978
+ context: context,
1979
+ fetchPolicy: fetchPolicy,
1980
+ errorPolicy: errorPolicy,
1981
+ });
1982
+ };
1983
+ var shouldNotify = notifyOnNetworkStatusChange &&
1984
+ typeof oldNetworkStatus === "number" &&
1985
+ oldNetworkStatus !== networkStatus &&
1986
+ isNetworkRequestInFlight(networkStatus);
1987
+ switch (fetchPolicy) {
1988
+ default:
1989
+ case "cache-first": {
1990
+ var diff = readCache();
1991
+ if (diff.complete) {
1992
+ return {
1993
+ fromLink: false,
1994
+ sources: [resultsFromCache(diff, queryInfo.markReady())],
1995
+ };
1996
+ }
1997
+ if (returnPartialData || shouldNotify) {
1998
+ return {
1999
+ fromLink: true,
2000
+ sources: [resultsFromCache(diff), resultsFromLink()],
2001
+ };
2002
+ }
2003
+ return { fromLink: true, sources: [resultsFromLink()] };
2004
+ }
2005
+ case "cache-and-network": {
2006
+ var diff = readCache();
2007
+ if (diff.complete || returnPartialData || shouldNotify) {
2008
+ return {
2009
+ fromLink: true,
2010
+ sources: [resultsFromCache(diff), resultsFromLink()],
2011
+ };
2012
+ }
2013
+ return { fromLink: true, sources: [resultsFromLink()] };
2014
+ }
2015
+ case "cache-only":
2016
+ return {
2017
+ fromLink: false,
2018
+ sources: [resultsFromCache(readCache(), queryInfo.markReady())],
2019
+ };
2020
+ case "network-only":
2021
+ if (shouldNotify) {
2022
+ return {
2023
+ fromLink: true,
2024
+ sources: [resultsFromCache(readCache()), resultsFromLink()],
2025
+ };
2026
+ }
2027
+ return { fromLink: true, sources: [resultsFromLink()] };
2028
+ case "no-cache":
2029
+ if (shouldNotify) {
2030
+ return {
2031
+ fromLink: true,
2032
+ sources: [resultsFromCache(queryInfo.getDiff()), resultsFromLink()],
2033
+ };
2034
+ }
2035
+ return { fromLink: true, sources: [resultsFromLink()] };
2036
+ case "standby":
2037
+ return { fromLink: false, sources: [] };
2038
+ }
2039
+ };
2040
+ QueryManager.prototype.getOrCreateQuery = function (queryId) {
2041
+ if (queryId && !this.queries.has(queryId)) {
2042
+ this.queries.set(queryId, new QueryInfo(this, queryId));
2043
+ }
2044
+ return this.queries.get(queryId);
2045
+ };
2046
+ QueryManager.prototype.prepareContext = function (context) {
2047
+ if (context === void 0) { context = {}; }
2048
+ var newContext = this.localState.prepareContext(context);
2049
+ return tslib.__assign(tslib.__assign(tslib.__assign({}, this.defaultContext), newContext), { clientAwareness: this.clientAwareness });
2050
+ };
2051
+ return QueryManager;
2052
+ }());
2053
+
2054
+ var LocalState = (function () {
2055
+ function LocalState(_a) {
2056
+ var cache = _a.cache, client = _a.client, resolvers = _a.resolvers, fragmentMatcher = _a.fragmentMatcher;
2057
+ this.selectionsToResolveCache = new WeakMap();
2058
+ this.cache = cache;
2059
+ if (client) {
2060
+ this.client = client;
2061
+ }
2062
+ if (resolvers) {
2063
+ this.addResolvers(resolvers);
2064
+ }
2065
+ if (fragmentMatcher) {
2066
+ this.setFragmentMatcher(fragmentMatcher);
2067
+ }
2068
+ }
2069
+ LocalState.prototype.addResolvers = function (resolvers) {
2070
+ var _this = this;
2071
+ this.resolvers = this.resolvers || {};
2072
+ if (Array.isArray(resolvers)) {
2073
+ resolvers.forEach(function (resolverGroup) {
2074
+ _this.resolvers = utilities.mergeDeep(_this.resolvers, resolverGroup);
2075
+ });
2076
+ }
2077
+ else {
2078
+ this.resolvers = utilities.mergeDeep(this.resolvers, resolvers);
2079
+ }
2080
+ };
2081
+ LocalState.prototype.setResolvers = function (resolvers) {
2082
+ this.resolvers = {};
2083
+ this.addResolvers(resolvers);
2084
+ };
2085
+ LocalState.prototype.getResolvers = function () {
2086
+ return this.resolvers || {};
2087
+ };
2088
+ LocalState.prototype.runResolvers = function (_a) {
2089
+ return tslib.__awaiter(this, arguments, void 0, function (_b) {
2090
+ var document = _b.document, remoteResult = _b.remoteResult, context = _b.context, variables = _b.variables, _c = _b.onlyRunForcedResolvers, onlyRunForcedResolvers = _c === void 0 ? false : _c;
2091
+ return tslib.__generator(this, function (_d) {
2092
+ if (document) {
2093
+ return [2 , this.resolveDocument(document, remoteResult.data, context, variables, this.fragmentMatcher, onlyRunForcedResolvers).then(function (localResult) { return (tslib.__assign(tslib.__assign({}, remoteResult), { data: localResult.result })); })];
2094
+ }
2095
+ return [2 , remoteResult];
2096
+ });
2097
+ });
2098
+ };
2099
+ LocalState.prototype.setFragmentMatcher = function (fragmentMatcher) {
2100
+ this.fragmentMatcher = fragmentMatcher;
2101
+ };
2102
+ LocalState.prototype.getFragmentMatcher = function () {
2103
+ return this.fragmentMatcher;
2104
+ };
2105
+ LocalState.prototype.clientQuery = function (document) {
2106
+ if (utilities.hasDirectives(["client"], document)) {
2107
+ if (this.resolvers) {
2108
+ return document;
2109
+ }
2110
+ }
2111
+ return null;
2112
+ };
2113
+ LocalState.prototype.serverQuery = function (document) {
2114
+ return utilities.removeClientSetsFromDocument(document);
2115
+ };
2116
+ LocalState.prototype.prepareContext = function (context) {
2117
+ var cache = this.cache;
2118
+ return tslib.__assign(tslib.__assign({}, context), { cache: cache,
2119
+ getCacheKey: function (obj) {
2120
+ return cache.identify(obj);
2121
+ } });
2122
+ };
2123
+ LocalState.prototype.addExportedVariables = function (document_1) {
2124
+ return tslib.__awaiter(this, arguments, void 0, function (document, variables, context) {
2125
+ if (variables === void 0) { variables = {}; }
2126
+ if (context === void 0) { context = {}; }
2127
+ return tslib.__generator(this, function (_a) {
2128
+ if (document) {
2129
+ return [2 , this.resolveDocument(document, this.buildRootValueFromCache(document, variables) || {}, this.prepareContext(context), variables).then(function (data) { return (tslib.__assign(tslib.__assign({}, variables), data.exportedVariables)); })];
2130
+ }
2131
+ return [2 , tslib.__assign({}, variables)];
2132
+ });
2133
+ });
2134
+ };
2135
+ LocalState.prototype.shouldForceResolvers = function (document) {
2136
+ var forceResolvers = false;
2137
+ graphql.visit(document, {
2138
+ Directive: {
2139
+ enter: function (node) {
2140
+ if (node.name.value === "client" && node.arguments) {
2141
+ forceResolvers = node.arguments.some(function (arg) {
2142
+ return arg.name.value === "always" &&
2143
+ arg.value.kind === "BooleanValue" &&
2144
+ arg.value.value === true;
2145
+ });
2146
+ if (forceResolvers) {
2147
+ return graphql.BREAK;
2148
+ }
2149
+ }
2150
+ },
2151
+ },
2152
+ });
2153
+ return forceResolvers;
2154
+ };
2155
+ LocalState.prototype.buildRootValueFromCache = function (document, variables) {
2156
+ return this.cache.diff({
2157
+ query: utilities.buildQueryFromSelectionSet(document),
2158
+ variables: variables,
2159
+ returnPartialData: true,
2160
+ optimistic: false,
2161
+ }).result;
2162
+ };
2163
+ LocalState.prototype.resolveDocument = function (document_1, rootValue_1) {
2164
+ return tslib.__awaiter(this, arguments, void 0, function (document, rootValue, context, variables, fragmentMatcher, onlyRunForcedResolvers) {
2165
+ var mainDefinition, fragments, fragmentMap, selectionsToResolve, definitionOperation, defaultOperationType, _a, cache, client, execContext, isClientFieldDescendant;
2166
+ if (context === void 0) { context = {}; }
2167
+ if (variables === void 0) { variables = {}; }
2168
+ if (fragmentMatcher === void 0) { fragmentMatcher = function () { return true; }; }
2169
+ if (onlyRunForcedResolvers === void 0) { onlyRunForcedResolvers = false; }
2170
+ return tslib.__generator(this, function (_b) {
2171
+ mainDefinition = utilities.getMainDefinition(document);
2172
+ fragments = utilities.getFragmentDefinitions(document);
2173
+ fragmentMap = utilities.createFragmentMap(fragments);
2174
+ selectionsToResolve = this.collectSelectionsToResolve(mainDefinition, fragmentMap);
2175
+ definitionOperation = mainDefinition.operation;
2176
+ defaultOperationType = definitionOperation ?
2177
+ definitionOperation.charAt(0).toUpperCase() +
2178
+ definitionOperation.slice(1)
2179
+ : "Query";
2180
+ _a = this, cache = _a.cache, client = _a.client;
2181
+ execContext = {
2182
+ fragmentMap: fragmentMap,
2183
+ context: tslib.__assign(tslib.__assign({}, context), { cache: cache, client: client }),
2184
+ variables: variables,
2185
+ fragmentMatcher: fragmentMatcher,
2186
+ defaultOperationType: defaultOperationType,
2187
+ exportedVariables: {},
2188
+ selectionsToResolve: selectionsToResolve,
2189
+ onlyRunForcedResolvers: onlyRunForcedResolvers,
2190
+ };
2191
+ isClientFieldDescendant = false;
2192
+ return [2 , this.resolveSelectionSet(mainDefinition.selectionSet, isClientFieldDescendant, rootValue, execContext).then(function (result) { return ({
2193
+ result: result,
2194
+ exportedVariables: execContext.exportedVariables,
2195
+ }); })];
2196
+ });
2197
+ });
2198
+ };
2199
+ LocalState.prototype.resolveSelectionSet = function (selectionSet, isClientFieldDescendant, rootValue, execContext) {
2200
+ return tslib.__awaiter(this, void 0, void 0, function () {
2201
+ var fragmentMap, context, variables, resultsToMerge, execute;
2202
+ var _this = this;
2203
+ return tslib.__generator(this, function (_a) {
2204
+ fragmentMap = execContext.fragmentMap, context = execContext.context, variables = execContext.variables;
2205
+ resultsToMerge = [rootValue];
2206
+ execute = function (selection) { return tslib.__awaiter(_this, void 0, void 0, function () {
2207
+ var fragment, typeCondition;
2208
+ return tslib.__generator(this, function (_a) {
2209
+ if (!isClientFieldDescendant &&
2210
+ !execContext.selectionsToResolve.has(selection)) {
2211
+ return [2 ];
2212
+ }
2213
+ if (!utilities.shouldInclude(selection, variables)) {
2214
+ return [2 ];
2215
+ }
2216
+ if (utilities.isField(selection)) {
2217
+ return [2 , this.resolveField(selection, isClientFieldDescendant, rootValue, execContext).then(function (fieldResult) {
2218
+ var _a;
2219
+ if (typeof fieldResult !== "undefined") {
2220
+ resultsToMerge.push((_a = {},
2221
+ _a[utilities.resultKeyNameFromField(selection)] = fieldResult,
2222
+ _a));
2223
+ }
2224
+ })];
2225
+ }
2226
+ if (utilities.isInlineFragment(selection)) {
2227
+ fragment = selection;
2228
+ }
2229
+ else {
2230
+ fragment = fragmentMap[selection.name.value];
2231
+ globals.invariant(fragment, 19, selection.name.value);
2232
+ }
2233
+ if (fragment && fragment.typeCondition) {
2234
+ typeCondition = fragment.typeCondition.name.value;
2235
+ if (execContext.fragmentMatcher(rootValue, typeCondition, context)) {
2236
+ return [2 , this.resolveSelectionSet(fragment.selectionSet, isClientFieldDescendant, rootValue, execContext).then(function (fragmentResult) {
2237
+ resultsToMerge.push(fragmentResult);
2238
+ })];
2239
+ }
2240
+ }
2241
+ return [2 ];
2242
+ });
2243
+ }); };
2244
+ return [2 , Promise.all(selectionSet.selections.map(execute)).then(function () {
2245
+ return utilities.mergeDeepArray(resultsToMerge);
2246
+ })];
2247
+ });
2248
+ });
2249
+ };
2250
+ LocalState.prototype.resolveField = function (field, isClientFieldDescendant, rootValue, execContext) {
2251
+ return tslib.__awaiter(this, void 0, void 0, function () {
2252
+ var variables, fieldName, aliasedFieldName, aliasUsed, defaultResult, resultPromise, resolverType, resolverMap, resolve;
2253
+ var _this = this;
2254
+ return tslib.__generator(this, function (_a) {
2255
+ if (!rootValue) {
2256
+ return [2 , null];
2257
+ }
2258
+ variables = execContext.variables;
2259
+ fieldName = field.name.value;
2260
+ aliasedFieldName = utilities.resultKeyNameFromField(field);
2261
+ aliasUsed = fieldName !== aliasedFieldName;
2262
+ defaultResult = rootValue[aliasedFieldName] || rootValue[fieldName];
2263
+ resultPromise = Promise.resolve(defaultResult);
2264
+ if (!execContext.onlyRunForcedResolvers ||
2265
+ this.shouldForceResolvers(field)) {
2266
+ resolverType = rootValue.__typename || execContext.defaultOperationType;
2267
+ resolverMap = this.resolvers && this.resolvers[resolverType];
2268
+ if (resolverMap) {
2269
+ resolve = resolverMap[aliasUsed ? fieldName : aliasedFieldName];
2270
+ if (resolve) {
2271
+ resultPromise = Promise.resolve(
2272
+ cache.cacheSlot.withValue(this.cache, resolve, [
2273
+ rootValue,
2274
+ utilities.argumentsObjectFromField(field, variables),
2275
+ execContext.context,
2276
+ { field: field, fragmentMap: execContext.fragmentMap },
2277
+ ]));
2278
+ }
2279
+ }
2280
+ }
2281
+ return [2 , resultPromise.then(function (result) {
2282
+ var _a, _b;
2283
+ if (result === void 0) { result = defaultResult; }
2284
+ if (field.directives) {
2285
+ field.directives.forEach(function (directive) {
2286
+ if (directive.name.value === "export" && directive.arguments) {
2287
+ directive.arguments.forEach(function (arg) {
2288
+ if (arg.name.value === "as" && arg.value.kind === "StringValue") {
2289
+ execContext.exportedVariables[arg.value.value] = result;
2290
+ }
2291
+ });
2292
+ }
2293
+ });
2294
+ }
2295
+ if (!field.selectionSet) {
2296
+ return result;
2297
+ }
2298
+ if (result == null) {
2299
+ return result;
2300
+ }
2301
+ var isClientField = (_b = (_a = field.directives) === null || _a === void 0 ? void 0 : _a.some(function (d) { return d.name.value === "client"; })) !== null && _b !== void 0 ? _b : false;
2302
+ if (Array.isArray(result)) {
2303
+ return _this.resolveSubSelectedArray(field, isClientFieldDescendant || isClientField, result, execContext);
2304
+ }
2305
+ if (field.selectionSet) {
2306
+ return _this.resolveSelectionSet(field.selectionSet, isClientFieldDescendant || isClientField, result, execContext);
2307
+ }
2308
+ })];
2309
+ });
2310
+ });
2311
+ };
2312
+ LocalState.prototype.resolveSubSelectedArray = function (field, isClientFieldDescendant, result, execContext) {
2313
+ var _this = this;
2314
+ return Promise.all(result.map(function (item) {
2315
+ if (item === null) {
2316
+ return null;
2317
+ }
2318
+ if (Array.isArray(item)) {
2319
+ return _this.resolveSubSelectedArray(field, isClientFieldDescendant, item, execContext);
2320
+ }
2321
+ if (field.selectionSet) {
2322
+ return _this.resolveSelectionSet(field.selectionSet, isClientFieldDescendant, item, execContext);
2323
+ }
2324
+ }));
2325
+ };
2326
+ LocalState.prototype.collectSelectionsToResolve = function (mainDefinition, fragmentMap) {
2327
+ var isSingleASTNode = function (node) { return !Array.isArray(node); };
2328
+ var selectionsToResolveCache = this.selectionsToResolveCache;
2329
+ function collectByDefinition(definitionNode) {
2330
+ if (!selectionsToResolveCache.has(definitionNode)) {
2331
+ var matches_1 = new Set();
2332
+ selectionsToResolveCache.set(definitionNode, matches_1);
2333
+ graphql.visit(definitionNode, {
2334
+ Directive: function (node, _, __, ___, ancestors) {
2335
+ if (node.name.value === "client") {
2336
+ ancestors.forEach(function (node) {
2337
+ if (isSingleASTNode(node) && graphql.isSelectionNode(node)) {
2338
+ matches_1.add(node);
2339
+ }
2340
+ });
2341
+ }
2342
+ },
2343
+ FragmentSpread: function (spread, _, __, ___, ancestors) {
2344
+ var fragment = fragmentMap[spread.name.value];
2345
+ globals.invariant(fragment, 20, spread.name.value);
2346
+ var fragmentSelections = collectByDefinition(fragment);
2347
+ if (fragmentSelections.size > 0) {
2348
+ ancestors.forEach(function (node) {
2349
+ if (isSingleASTNode(node) && graphql.isSelectionNode(node)) {
2350
+ matches_1.add(node);
2351
+ }
2352
+ });
2353
+ matches_1.add(spread);
2354
+ fragmentSelections.forEach(function (selection) {
2355
+ matches_1.add(selection);
2356
+ });
2357
+ }
2358
+ },
2359
+ });
2360
+ }
2361
+ return selectionsToResolveCache.get(definitionNode);
2362
+ }
2363
+ return collectByDefinition(mainDefinition);
2364
+ };
2365
+ return LocalState;
2366
+ }());
2367
+
2368
+ var cacheSizeSymbol = Symbol.for("apollo.cacheSize");
2369
+ var cacheSizes = tslib.__assign({}, globals.global[cacheSizeSymbol]);
2370
+
2371
+ var globalCaches = {};
2372
+ var getApolloClientMemoryInternals = globalThis.__DEV__ !== false ?
2373
+ _getApolloClientMemoryInternals
2374
+ : undefined;
2375
+ function getCurrentCacheSizes() {
2376
+ var defaults = {
2377
+ parser: 1000 ,
2378
+ canonicalStringify: 1000 ,
2379
+ print: 2000 ,
2380
+ "documentTransform.cache": 2000 ,
2381
+ "queryManager.getDocumentInfo": 2000 ,
2382
+ "PersistedQueryLink.persistedQueryHashes": 2000 ,
2383
+ "fragmentRegistry.transform": 2000 ,
2384
+ "fragmentRegistry.lookup": 1000 ,
2385
+ "fragmentRegistry.findFragmentSpreads": 4000 ,
2386
+ "cache.fragmentQueryDocuments": 1000 ,
2387
+ "removeTypenameFromVariables.getVariableDefinitions": 2000 ,
2388
+ "inMemoryCache.maybeBroadcastWatch": 5000 ,
2389
+ "inMemoryCache.executeSelectionSet": 50000 ,
2390
+ "inMemoryCache.executeSubSelectedArray": 10000 ,
2391
+ };
2392
+ return Object.fromEntries(Object.entries(defaults).map(function (_a) {
2393
+ var k = _a[0], v = _a[1];
2394
+ return [
2395
+ k,
2396
+ cacheSizes[k] || v,
2397
+ ];
2398
+ }));
2399
+ }
2400
+ function _getApolloClientMemoryInternals() {
2401
+ var _a, _b, _c, _d, _e;
2402
+ if (!(globalThis.__DEV__ !== false))
2403
+ throw new Error("only supported in development mode");
2404
+ return {
2405
+ limits: getCurrentCacheSizes(),
2406
+ sizes: tslib.__assign({ print: (_a = globalCaches.print) === null || _a === void 0 ? void 0 : _a.call(globalCaches), parser: (_b = globalCaches.parser) === null || _b === void 0 ? void 0 : _b.call(globalCaches), canonicalStringify: (_c = globalCaches.canonicalStringify) === null || _c === void 0 ? void 0 : _c.call(globalCaches), links: linkInfo(this.link), queryManager: {
2407
+ getDocumentInfo: this["queryManager"]["transformCache"].size,
2408
+ documentTransforms: transformInfo(this["queryManager"].documentTransform),
2409
+ } }, (_e = (_d = this.cache).getMemoryInternals) === null || _e === void 0 ? void 0 : _e.call(_d)),
2410
+ };
2411
+ }
2412
+ function isWrapper(f) {
2413
+ return !!f && "dirtyKey" in f;
2414
+ }
2415
+ function getWrapperInformation(f) {
2416
+ return isWrapper(f) ? f.size : undefined;
2417
+ }
2418
+ function isDefined(value) {
2419
+ return value != null;
2420
+ }
2421
+ function transformInfo(transform) {
2422
+ return recurseTransformInfo(transform).map(function (cache) { return ({ cache: cache }); });
2423
+ }
2424
+ function recurseTransformInfo(transform) {
2425
+ return transform ?
2426
+ tslib.__spreadArray(tslib.__spreadArray([
2427
+ getWrapperInformation(transform === null || transform === void 0 ? void 0 : transform["performWork"])
2428
+ ], recurseTransformInfo(transform === null || transform === void 0 ? void 0 : transform["left"]), true), recurseTransformInfo(transform === null || transform === void 0 ? void 0 : transform["right"]), true).filter(isDefined)
2429
+ : [];
2430
+ }
2431
+ function linkInfo(link) {
2432
+ var _a;
2433
+ return link ?
2434
+ tslib.__spreadArray(tslib.__spreadArray([
2435
+ (_a = link === null || link === void 0 ? void 0 : link.getMemoryInternals) === null || _a === void 0 ? void 0 : _a.call(link)
2436
+ ], linkInfo(link === null || link === void 0 ? void 0 : link.left), true), linkInfo(link === null || link === void 0 ? void 0 : link.right), true).filter(isDefined)
2437
+ : [];
2438
+ }
2439
+
2440
+ var hasSuggestedDevtools = false;
2441
+ var ApolloClient = (function () {
2442
+ function ApolloClient(options) {
2443
+ var _this = this;
2444
+ var _a;
2445
+ this.resetStoreCallbacks = [];
2446
+ this.clearStoreCallbacks = [];
2447
+ if (!options.cache) {
2448
+ throw globals.newInvariantError(16);
2449
+ }
2450
+ var uri = options.uri, credentials = options.credentials, headers = options.headers, cache = options.cache, documentTransform = options.documentTransform, _b = options.ssrMode, ssrMode = _b === void 0 ? false : _b, _c = options.ssrForceFetchDelay, ssrForceFetchDelay = _c === void 0 ? 0 : _c,
2451
+ connectToDevTools = options.connectToDevTools, _d = options.queryDeduplication, queryDeduplication = _d === void 0 ? true : _d, defaultOptions = options.defaultOptions, defaultContext = options.defaultContext, _e = options.assumeImmutableResults, assumeImmutableResults = _e === void 0 ? cache.assumeImmutableResults : _e, resolvers = options.resolvers, typeDefs = options.typeDefs, fragmentMatcher = options.fragmentMatcher, clientAwarenessName = options.name, clientAwarenessVersion = options.version, devtools = options.devtools, dataMasking = options.dataMasking;
2452
+ var link = options.link;
2453
+ if (!link) {
2454
+ link =
2455
+ uri ? new http.HttpLink({ uri: uri, credentials: credentials, headers: headers }) : core.ApolloLink.empty();
2456
+ }
2457
+ this.link = link;
2458
+ this.cache = cache;
2459
+ this.disableNetworkFetches = ssrMode || ssrForceFetchDelay > 0;
2460
+ this.queryDeduplication = queryDeduplication;
2461
+ this.defaultOptions = defaultOptions || Object.create(null);
2462
+ this.typeDefs = typeDefs;
2463
+ this.devtoolsConfig = tslib.__assign(tslib.__assign({}, devtools), { enabled: (_a = devtools === null || devtools === void 0 ? void 0 : devtools.enabled) !== null && _a !== void 0 ? _a : connectToDevTools });
2464
+ if (this.devtoolsConfig.enabled === undefined) {
2465
+ this.devtoolsConfig.enabled = globalThis.__DEV__ !== false;
2466
+ }
2467
+ if (ssrForceFetchDelay) {
2468
+ setTimeout(function () { return (_this.disableNetworkFetches = false); }, ssrForceFetchDelay);
2469
+ }
2470
+ this.watchQuery = this.watchQuery.bind(this);
2471
+ this.query = this.query.bind(this);
2472
+ this.mutate = this.mutate.bind(this);
2473
+ this.watchFragment = this.watchFragment.bind(this);
2474
+ this.resetStore = this.resetStore.bind(this);
2475
+ this.reFetchObservableQueries = this.reFetchObservableQueries.bind(this);
2476
+ this.version = version;
2477
+ this.localState = new LocalState({
2478
+ cache: cache,
2479
+ client: this,
2480
+ resolvers: resolvers,
2481
+ fragmentMatcher: fragmentMatcher,
2482
+ });
2483
+ this.queryManager = new QueryManager({
2484
+ cache: this.cache,
2485
+ link: this.link,
2486
+ defaultOptions: this.defaultOptions,
2487
+ defaultContext: defaultContext,
2488
+ documentTransform: documentTransform,
2489
+ queryDeduplication: queryDeduplication,
2490
+ ssrMode: ssrMode,
2491
+ dataMasking: !!dataMasking,
2492
+ clientAwareness: {
2493
+ name: clientAwarenessName,
2494
+ version: clientAwarenessVersion,
2495
+ },
2496
+ localState: this.localState,
2497
+ assumeImmutableResults: assumeImmutableResults,
2498
+ onBroadcast: this.devtoolsConfig.enabled ?
2499
+ function () {
2500
+ if (_this.devToolsHookCb) {
2501
+ _this.devToolsHookCb({
2502
+ action: {},
2503
+ state: {
2504
+ queries: _this.queryManager.getQueryStore(),
2505
+ mutations: _this.queryManager.mutationStore || {},
2506
+ },
2507
+ dataWithOptimisticResults: _this.cache.extract(true),
2508
+ });
2509
+ }
2510
+ }
2511
+ : void 0,
2512
+ });
2513
+ if (this.devtoolsConfig.enabled)
2514
+ this.connectToDevTools();
2515
+ }
2516
+ ApolloClient.prototype.connectToDevTools = function () {
2517
+ if (typeof window === "undefined") {
2518
+ return;
2519
+ }
2520
+ var windowWithDevTools = window;
2521
+ var devtoolsSymbol = Symbol.for("apollo.devtools");
2522
+ (windowWithDevTools[devtoolsSymbol] =
2523
+ windowWithDevTools[devtoolsSymbol] || []).push(this);
2524
+ windowWithDevTools.__APOLLO_CLIENT__ = this;
2525
+ if (!hasSuggestedDevtools && globalThis.__DEV__ !== false) {
2526
+ hasSuggestedDevtools = true;
2527
+ if (window.document &&
2528
+ window.top === window.self &&
2529
+ /^(https?|file):$/.test(window.location.protocol)) {
2530
+ setTimeout(function () {
2531
+ if (!window.__APOLLO_DEVTOOLS_GLOBAL_HOOK__) {
2532
+ var nav = window.navigator;
2533
+ var ua = nav && nav.userAgent;
2534
+ var url = void 0;
2535
+ if (typeof ua === "string") {
2536
+ if (ua.indexOf("Chrome/") > -1) {
2537
+ url =
2538
+ "https://chrome.google.com/webstore/detail/" +
2539
+ "apollo-client-developer-t/jdkknkkbebbapilgoeccciglkfbmbnfm";
2540
+ }
2541
+ else if (ua.indexOf("Firefox/") > -1) {
2542
+ url =
2543
+ "https://addons.mozilla.org/en-US/firefox/addon/apollo-developer-tools/";
2544
+ }
2545
+ }
2546
+ if (url) {
2547
+ globalThis.__DEV__ !== false && globals.invariant.log("Download the Apollo DevTools for a better development " +
2548
+ "experience: %s", url);
2549
+ }
2550
+ }
2551
+ }, 10000);
2552
+ }
2553
+ }
2554
+ };
2555
+ Object.defineProperty(ApolloClient.prototype, "documentTransform", {
2556
+ get: function () {
2557
+ return this.queryManager.documentTransform;
2558
+ },
2559
+ enumerable: false,
2560
+ configurable: true
2561
+ });
2562
+ ApolloClient.prototype.stop = function () {
2563
+ this.queryManager.stop();
2564
+ };
2565
+ ApolloClient.prototype.watchQuery = function (options) {
2566
+ if (this.defaultOptions.watchQuery) {
2567
+ options = utilities.mergeOptions(this.defaultOptions.watchQuery, options);
2568
+ }
2569
+ if (this.disableNetworkFetches &&
2570
+ (options.fetchPolicy === "network-only" ||
2571
+ options.fetchPolicy === "cache-and-network")) {
2572
+ options = tslib.__assign(tslib.__assign({}, options), { fetchPolicy: "cache-first" });
2573
+ }
2574
+ return this.queryManager.watchQuery(options);
2575
+ };
2576
+ ApolloClient.prototype.query = function (options) {
2577
+ if (this.defaultOptions.query) {
2578
+ options = utilities.mergeOptions(this.defaultOptions.query, options);
2579
+ }
2580
+ globals.invariant(options.fetchPolicy !== "cache-and-network", 17);
2581
+ if (this.disableNetworkFetches && options.fetchPolicy === "network-only") {
2582
+ options = tslib.__assign(tslib.__assign({}, options), { fetchPolicy: "cache-first" });
2583
+ }
2584
+ return this.queryManager.query(options);
2585
+ };
2586
+ ApolloClient.prototype.mutate = function (options) {
2587
+ if (this.defaultOptions.mutate) {
2588
+ options = utilities.mergeOptions(this.defaultOptions.mutate, options);
2589
+ }
2590
+ return this.queryManager.mutate(options);
2591
+ };
2592
+ ApolloClient.prototype.subscribe = function (options) {
2593
+ var _this = this;
2594
+ var id = this.queryManager.generateQueryId();
2595
+ return this.queryManager
2596
+ .startGraphQLSubscription(options)
2597
+ .map(function (result) { return (tslib.__assign(tslib.__assign({}, result), { data: _this.queryManager.maskOperation({
2598
+ document: options.query,
2599
+ data: result.data,
2600
+ fetchPolicy: options.fetchPolicy,
2601
+ id: id,
2602
+ }) })); });
2603
+ };
2604
+ ApolloClient.prototype.readQuery = function (options, optimistic) {
2605
+ if (optimistic === void 0) { optimistic = false; }
2606
+ return this.cache.readQuery(options, optimistic);
2607
+ };
2608
+ ApolloClient.prototype.watchFragment = function (options) {
2609
+ var _a;
2610
+ return this.cache.watchFragment(tslib.__assign(tslib.__assign({}, options), (_a = {}, _a[Symbol.for("apollo.dataMasking")] = this.queryManager.dataMasking, _a)));
2611
+ };
2612
+ ApolloClient.prototype.readFragment = function (options, optimistic) {
2613
+ if (optimistic === void 0) { optimistic = false; }
2614
+ return this.cache.readFragment(options, optimistic);
2615
+ };
2616
+ ApolloClient.prototype.writeQuery = function (options) {
2617
+ var ref = this.cache.writeQuery(options);
2618
+ if (options.broadcast !== false) {
2619
+ this.queryManager.broadcastQueries();
2620
+ }
2621
+ return ref;
2622
+ };
2623
+ ApolloClient.prototype.writeFragment = function (options) {
2624
+ var ref = this.cache.writeFragment(options);
2625
+ if (options.broadcast !== false) {
2626
+ this.queryManager.broadcastQueries();
2627
+ }
2628
+ return ref;
2629
+ };
2630
+ ApolloClient.prototype.__actionHookForDevTools = function (cb) {
2631
+ this.devToolsHookCb = cb;
2632
+ };
2633
+ ApolloClient.prototype.__requestRaw = function (payload) {
2634
+ return core.execute(this.link, payload);
2635
+ };
2636
+ ApolloClient.prototype.resetStore = function () {
2637
+ var _this = this;
2638
+ return Promise.resolve()
2639
+ .then(function () {
2640
+ return _this.queryManager.clearStore({
2641
+ discardWatches: false,
2642
+ });
2643
+ })
2644
+ .then(function () { return Promise.all(_this.resetStoreCallbacks.map(function (fn) { return fn(); })); })
2645
+ .then(function () { return _this.reFetchObservableQueries(); });
2646
+ };
2647
+ ApolloClient.prototype.clearStore = function () {
2648
+ var _this = this;
2649
+ return Promise.resolve()
2650
+ .then(function () {
2651
+ return _this.queryManager.clearStore({
2652
+ discardWatches: true,
2653
+ });
2654
+ })
2655
+ .then(function () { return Promise.all(_this.clearStoreCallbacks.map(function (fn) { return fn(); })); });
2656
+ };
2657
+ ApolloClient.prototype.onResetStore = function (cb) {
2658
+ var _this = this;
2659
+ this.resetStoreCallbacks.push(cb);
2660
+ return function () {
2661
+ _this.resetStoreCallbacks = _this.resetStoreCallbacks.filter(function (c) { return c !== cb; });
2662
+ };
2663
+ };
2664
+ ApolloClient.prototype.onClearStore = function (cb) {
2665
+ var _this = this;
2666
+ this.clearStoreCallbacks.push(cb);
2667
+ return function () {
2668
+ _this.clearStoreCallbacks = _this.clearStoreCallbacks.filter(function (c) { return c !== cb; });
2669
+ };
2670
+ };
2671
+ ApolloClient.prototype.reFetchObservableQueries = function (includeStandby) {
2672
+ return this.queryManager.reFetchObservableQueries(includeStandby);
2673
+ };
2674
+ ApolloClient.prototype.refetchQueries = function (options) {
2675
+ var map = this.queryManager.refetchQueries(options);
2676
+ var queries = [];
2677
+ var results = [];
2678
+ map.forEach(function (result, obsQuery) {
2679
+ queries.push(obsQuery);
2680
+ results.push(result);
2681
+ });
2682
+ var result = Promise.all(results);
2683
+ result.queries = queries;
2684
+ result.results = results;
2685
+ result.catch(function (error) {
2686
+ globalThis.__DEV__ !== false && globals.invariant.debug(18, error);
2687
+ });
2688
+ return result;
2689
+ };
2690
+ ApolloClient.prototype.getObservableQueries = function (include) {
2691
+ if (include === void 0) { include = "active"; }
2692
+ return this.queryManager.getObservableQueries(include);
2693
+ };
2694
+ ApolloClient.prototype.extract = function (optimistic) {
2695
+ return this.cache.extract(optimistic);
2696
+ };
2697
+ ApolloClient.prototype.restore = function (serializedState) {
2698
+ return this.cache.restore(serializedState);
2699
+ };
2700
+ ApolloClient.prototype.addResolvers = function (resolvers) {
2701
+ this.localState.addResolvers(resolvers);
2702
+ };
2703
+ ApolloClient.prototype.setResolvers = function (resolvers) {
2704
+ this.localState.setResolvers(resolvers);
2705
+ };
2706
+ ApolloClient.prototype.getResolvers = function () {
2707
+ return this.localState.getResolvers();
2708
+ };
2709
+ ApolloClient.prototype.setLocalStateFragmentMatcher = function (fragmentMatcher) {
2710
+ this.localState.setFragmentMatcher(fragmentMatcher);
2711
+ };
2712
+ ApolloClient.prototype.setLink = function (newLink) {
2713
+ this.link = this.queryManager.link = newLink;
2714
+ };
2715
+ Object.defineProperty(ApolloClient.prototype, "defaultContext", {
2716
+ get: function () {
2717
+ return this.queryManager.defaultContext;
2718
+ },
2719
+ enumerable: false,
2720
+ configurable: true
2721
+ });
2722
+ return ApolloClient;
2723
+ }());
2724
+ if (globalThis.__DEV__ !== false) {
2725
+ ApolloClient.prototype.getMemoryInternals = getApolloClientMemoryInternals;
2726
+ }
2727
+
2728
+ tsInvariant.setVerbosity(globalThis.__DEV__ !== false ? "log" : "silent");
2729
+
2730
+ exports.DocumentTransform = utilities.DocumentTransform;
2731
+ exports.Observable = utilities.Observable;
2732
+ exports.isReference = utilities.isReference;
2733
+ exports.makeReference = utilities.makeReference;
2734
+ exports.mergeOptions = utilities.mergeOptions;
2735
+ exports.ApolloCache = cache.ApolloCache;
2736
+ exports.Cache = cache.Cache;
2737
+ exports.InMemoryCache = cache.InMemoryCache;
2738
+ exports.MissingFieldError = cache.MissingFieldError;
2739
+ exports.defaultDataIdFromObject = cache.defaultDataIdFromObject;
2740
+ exports.makeVar = cache.makeVar;
2741
+ exports.ApolloError = errors.ApolloError;
2742
+ exports.isApolloError = errors.isApolloError;
2743
+ exports.fromError = utils.fromError;
2744
+ exports.fromPromise = utils.fromPromise;
2745
+ exports.throwServerError = utils.throwServerError;
2746
+ exports.toPromise = utils.toPromise;
2747
+ exports.setLogVerbosity = tsInvariant.setVerbosity;
2748
+ exports.disableExperimentalFragmentVariables = graphqlTag.disableExperimentalFragmentVariables;
2749
+ exports.disableFragmentWarnings = graphqlTag.disableFragmentWarnings;
2750
+ exports.enableExperimentalFragmentVariables = graphqlTag.enableExperimentalFragmentVariables;
2751
+ exports.gql = graphqlTag.gql;
2752
+ exports.resetCaches = graphqlTag.resetCaches;
2753
+ exports.ApolloClient = ApolloClient;
2754
+ exports.ObservableQuery = ObservableQuery;
2755
+ exports.isNetworkRequestSettled = isNetworkRequestSettled;
2756
+ for (var k in core) {
2757
+ if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = core[k];
2758
+ }
2759
+ for (var k in http) {
2760
+ if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = http[k];
2761
+ }
2762
+ //# sourceMappingURL=core.cjs.map