Skip to main content
0 votes
0 answers
25 views

I have a graphQL query that looks like this: query { vehiclesByIds(ids: 1,2,3,4,5...) { id options { optionId name adCopy { copyType copyText } } ...
Charles Boyung's user avatar
1 vote
1 answer
75 views

I want to have a single query to take in a bool? Active parameter which could possibly be null. Although, from experimenting I can either have a query which always excepts a value from Active OR just ...
Hughesey's user avatar
  • 457
0 votes
0 answers
55 views

I have been using data loader with stitching queries in hotchocolate v13. I recently migrated to v15 and had to introduce Fusion as stitching is no longer supported. After the upgrade, the batch data ...
Snk's user avatar
  • 23
0 votes
1 answer
51 views

I upgraded hotchocolate from V13 to V15 and realized that the query stitching is no longer supported and need to use Fusion package. I am following these steps and everything is fine except that I am ...
Snk's user avatar
  • 23
0 votes
0 answers
24 views

I have a situation where I need a field to be used in a calculated one but if the api client/user does not include that field is never selected from the database and for that reason the calculated ...
Michel Fornaris's user avatar
0 votes
0 answers
45 views

I'm trying to create my own filter for a specific type of data in hotchocolate. I created a class from FilterInputType<MyType> and specified an additional field for filtering in it. For this ...
loloskc's user avatar
0 votes
0 answers
58 views

I am using the Hot Chocolate GraphQl library to do real time pub/sub messaging, this works if i create the RabbitMQ connection and channel without using the Hot Chocolate library using the same .Net ...
Soni A's user avatar
  • 43
1 vote
1 answer
88 views

Using HotChocolate v15.1.8 with EF v9.0.7 and Mapster v7.4.0, I encounter a bug with [UseSorting] / [UseFiltering] LinQ conversions which appear invalid when applied to DDD ValueObject or EF complex ...
Rémi Lamotte's user avatar
0 votes
0 answers
72 views

I am trying to get result when I query like below in fusion gateway, basically join of Product and Review like for each product get the review details for each product,I know Fusion is in .Net but I ...
Sovon Singha's user avatar
0 votes
0 answers
28 views

I am trying to understand the mechanics of Hotchocolate Subscription mechanism. So assume the scenario where i have car, and garage entities. Garage can have 0->N Cars. As a user that logs into ...
Aeseir's user avatar
  • 8,582
0 votes
0 answers
14 views

I have a mutation method implemented as follows: public async Task<Project> ChangeProjectStatus( Guid projectId, ProjectStatus status ) { return ...<non-null ...
THX-1138's user avatar
  • 21.8k
0 votes
0 answers
75 views

I have two api's I want to "connect" via a YARP-gateway. Those apis are routed via the path, so that '/api1/somecontroller' is routed to 'http://localhost:1234/somecontroller'. In both of ...
StefanM's user avatar
  • 49
0 votes
0 answers
234 views

I'm using Hotchocolate v15, EF Core. For 1:m relationship, I'm using dataloader and projection to just fetch selected fields for child items. It work as expected, for example: load products by branch. ...
Thu Nguyen's user avatar
2 votes
1 answer
297 views

I'm using cursor-based pagination with Hot Chocolate v15 (GraphQL) and have configured my pagination like this: [GraphQLDescription("Returns a list of paginated questions")] [UsePaging] [...
Marat's user avatar
  • 35
0 votes
0 answers
42 views

How to access FunctionContext.Items inside GraphQL resolver with HotChocolate.AzureFunctions.IsolatedProcess? Environment: .NET 8.0 Azure Functions Isolated Worker HotChocolate.AzureFunctions....
Sandeep K's user avatar

15 30 50 per page
1
2 3 4 5
30