1

I saw that in GraphQL .NET the subscription is not working. Only with .NET core. Do you know if it possible with hotchocolate package of graphQL? I didn't find anything specific on it.

Michal Asaf Carmeli
  • 2,158
  • 2
  • 15
  • 9
  • Did you even look at the dependencies for [the Nuget package](https://www.nuget.org/packages/HotChocolate)? – DavidG Jul 08 '19 at 13:11

1 Answers1

1

subscription itself are available for both .Net Framework and .Net Core.

But we only have implemented the Apollo subscription protocol for web sockets on .Net core.

If there is demand for it we could look into implementing it for Owin as well.

If you want to do it on your own you can do so, the query engine will return a response stream which can be observed.