graphql-workshop icon indicating copy to clipboard operation
graphql-workshop copied to clipboard

Getting started with GraphQL on ASP.NET Core and Hot Chocolate - Workshop

Results 32 graphql-workshop issues
Sort by recently updated
recently updated
newest added

In this section: https://github.com/ChilliCream/graphql-workshop/blob/master/docs/1-creating-a-graphql-server-project.md#adding-mutations Relay mutation pattern link gives 404 Not Found: [relay mutation pattern](https://relay.dev/docs/en/graphql-server-specification.html#mutations)

When completing section 3 "Understanding Dataloaders", with the introduction of SpeakerType, and SpeakerResolvers, I'm getting the error: ``` { "errors": [ { "message": "There was no argument with the name...

After _**upgrading**_ [Session #6's](https://github.com/ChilliCream/graphql-workshop/tree/master/code/session-6) HotChocolate.AspNetCore and HotChocolate.Data to version _**12.4.1**_ running ```graphql query GetSessionsContaining2InTitle { sessions(where: { title: { contains: "2" } }) { nodes { title } } }...

On my solution, As soon as I apply the logic to allow parallel query, I get the following exception: `Unable to resolve service for type 'DAL.PRdbContext' while attempting to activate...

- EF tools (5.0 -> 6.0.2) - EF -> 6.0.2 - HC (12.5-preview) -> 12.7-preview40 global.json -> 6.0.200

Comment out the disposing to avoid Issues

All ToArrayAsync do not use cancelation tokens

How to use projection in data loader

Hi! I want to try the get started found here: https://chillicream.com/docs/strawberryshake/get-started and the following project is generated. I found that the RenameSession is not work correctly after click the Save...