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.

fix(core): correctly add argument to invocation (#3604)

authored by

Jovi De Croock and committed by
GitHub
bf01d6b4 ff1fd76a

+1 -1
+1 -1
packages/core/src/utils/request.ts
··· 169 169 ): GraphQLRequest<Data, Variables> => { 170 170 const variables = _variables || ({} as Variables); 171 171 const query = keyDocument(_query); 172 - const printedVars = stringifyVariables(variables); 172 + const printedVars = stringifyVariables(variables, true); 173 173 let key = query.__key; 174 174 if (printedVars !== '{}') key = phash(printedVars, key); 175 175 return { key, query, variables, extensions };