ChilliCream / graphql-workshop

Getting started with GraphQL on ASP.NET Core and Hot Chocolate - Workshop
465 stars 199 forks source link

Session 3 - final query ended with errors #99

Closed albx closed 2 years ago

albx commented 2 years ago

Executing the last query GetSpeakerWithSessions on session 3 I have the following error:

{
  "errors": [
    {
      "message": "There was no argument with the name `speaker` found on the field `sessions`.",
      "locations": [
        {
          "line": 4,
          "column": 8
        }
      ],
      "path": [
        "speakers",
        0,
        "sessions"
      ],
      "extensions": {
        "fieldName": "sessions",
        "argumentName": "speaker"
      }
    }
  ]
}

I'm following the workshop trying to implement all the flow using ASP.NET Core 6 and HotChocolate version 12.7.0. Source code is available here: https://github.com/albx/graphql-workshop/tree/part-3

Am I missing something? Thank you very much for your help!

albx commented 2 years ago

Sorry, my bad. Already described in issue #95 Closing this issue.