Questions tagged [hotchocolate]

Hot Chocolate is an open-source .NET GraphQL server platform developed by ChilliCream. Use this tag for questions about code written using Hot Chocolate or for queries concerning the official documentation.

393 questions
-1
votes
1 answer

How to replace strawberry shake websocket client?

I need to replace strawberry shake web socket client with asp .net test server one for end to end testing is it possible? I was able to replace http client which used for queries and mutations with test server one by registering IHttpClientFactory…
Hnus
  • 912
  • 2
  • 9
  • 24
-1
votes
1 answer

HotChocolate filter collection based on resolved properties

public class Parent{ public IEnumerable Children(Filters filter){ return new List() { new Child()}; } } public class Child{ public string Value(ChildrenFilter filter){ // Maybe return null, maybe return a string } } I…
1 2 3
26
27