How to use projection on mutations using HotChocolate?
When using a mutation convention, the output of the method is a single object:
How to use projection on mutations using HotChocolate?
When using a mutation convention, the output of the method is a single object:
HotChocolate – Access property Name in custom ScalarType
I am wondering if it is possible to pass the name of a property to my custom ScalarType. I would like to have access to it, because I use that name in a method to encrypt the value.
How can I return a single object from a mutation using HotChocolate while using OOB UseProjection behavior?
I want to write a mutation using HotChocolate that would change FirstName of a given object (Person) and return the updated object as a single object (rather than an IQueriable).
How can I prevent HotChocolate from transforming single values into array with single value?
I am using HotChocolate v13 for my .NET 6 API and I am experiencing issues with the default behavior.
Here is the type used for my query variables:
How to Add a GraphQL Mutation using HotChocolate with Schema Stitching?
I’m working on a .NET Core project using HotChocolate as my GraphQL server. I’m trying to implement Schema Stitching from multiple services, and while I’ve been successful with Queries, I’m having trouble with Mutations.
I’m just doing a POC and I have defined the classes in this way