|
return apolloCache.writeQuery<${fragmentNamePascalCase}Fragment | null>({ query: ${queryByIdName}Document, variables: { ${entityShortCamelCaseName}Id }, data: (${fragmentNameCamelCase} ? ${fragmentNameCamelCase}Partial : null), broadcast:apolloBroadcast }); |

Running @apollo/client version 3.1.4.
Looks like the types were updated here: apollographql/apollo-client@7202b78#diff-a425d86f9a8376d3071667e3198c940a
The solution here would be to not return the result of apolloCache.writeQuery... ?
graphql-codegen-hasura/packages/graphql-codegen-hasura-shared/src/tshelperInjectors.ts
Line 135 in db5de3d
Running @apollo/client version 3.1.4.
Looks like the types were updated here: apollographql/apollo-client@7202b78#diff-a425d86f9a8376d3071667e3198c940a
The solution here would be to not return the result of
apolloCache.writeQuery...?