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 syntax issue in document-caching.md (#823)

authored by

Jovi De Croock and committed by
GitHub
363597b5 aa85ba0b

+1 -1
+1 -1
docs/basics/document-caching.md
··· 86 86 const [result, execute] = useMutation(`mutation($name: String!) { createUser(name: $name) }`); 87 87 88 88 const onClick = () => { 89 - execute({ context: { additionalTypenames: ['Wallet'] } }); 89 + execute({ name: 'newName' }, { additionalTypenames: ['Wallet'] }); 90 90 }; 91 91 ``` 92 92