Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
0
fork

Configure Feed

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

Update README.md

authored by

Jovi De Croock and committed by
GitHub
4d615b1d fa956f9e

+3 -4
+3 -4
README.md
··· 103 103 const result = (await client.query()) || useFragment(); 104 104 const [result] = useQuery(); // --> urql 105 105 const { data } = useQuery(); // --> Apollo 106 - // Missing cases: 107 - const { field } = useFragment(); // can't destructure into your data from the start 108 - const [{ data }] = useQuery(); // can't follow array destructuring with object destructuring 106 + const { field } = useFragment(); 107 + const [{ data }] = useQuery(); 109 108 const { 110 109 data: { pokemon }, 111 - } = useQuery(); // can't destructure into your data from the start 110 + } = useQuery(); 112 111 ``` 113 112 114 113 Lastly we don't track mutations/subscriptions as some folks will add additional fields to properly support