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.

correction doc (#716)

authored by

vincent and committed by
GitHub
77e58254 9ef44e87

+2 -1
+2 -1
docs/api/core.md
··· 73 73 ```js 74 74 import { pipe, subscribe } from 'wonka'; 75 75 76 - const { subscribe } = pipe( 76 + const { unsubscribe } = pipe( 77 77 client.query('{ test }', { 78 78 /* vars */ 79 79 }), ··· 87 87 .query('{ test }', { 88 88 /* vars */ 89 89 }) 90 + .toPromise() 90 91 .then(result => { 91 92 console.log(result); // OperationResult 92 93 });