Ejemplo n.º 1
0
        public async Task SubscribeToUpdates()
        {
            //https://www.nuget.org/packages/GraphQL.Client/2.0.0-alpha.3
            var result = await _client.SendSubscribeAsync("subscription { reviewAdded { title productId } }");

            result.OnReceive += Receive;
        }
        public async Task SubscribeToUpdates()
        {
            var result = await _client.SendSubscribeAsync("subscription { reviewAdded { title productId } }");

            result.OnReceive += Receive;
        }