Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

perf(core): remove duplicate `JSON.stringify` call on `data` in `ssrExchange` (#3632)

authored by

Vlad and committed by
GitHub
c73d0e2a b638bc84

+5 -1
+5
.changeset/sweet-goats-judge.md
··· 1 + --- 2 + '@urql/core': patch 3 + --- 4 + 5 + Removes double serialization of `data` in `ssrExchange`
-1
packages/core/src/exchanges/ssr.ts
··· 109 109 includeExtensions: boolean 110 110 ): SerializedResult => { 111 111 const serialized: SerializedResult = { 112 - data: JSON.stringify(result.data), 113 112 hasNext: result.hasNext, 114 113 }; 115 114