import ApolloClient, { gql } from 'apollo-boost'; const sub = gql` subscription props { newProperty: { name } } `; const client = new ApolloClient({ uri: 'http://localhost:4000', }); client.subscribe({ query: sub}).forEach(res => console.log("res"));