ChilliCream / graphql-workshop

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

Added DataLoader projections #115

Closed glen-84 closed 1 week ago

glen-84 commented 1 week ago

Closes #91.


There are two issues that I know of:

  1. The following query doesn't seem to select the Track name field:

    query one {
      speakers(first: 10) {
        edges {
          node {
            sessions {
              track {
                id
                name
              }
            }
          }
        }
      }
    }
  2. The following query fails with a "could not be translated" error:

    query two {
      tracks(first: 10) {
        edges {
          node {
            sessions(first: 10) {
              edges {
                node {
                  abstract
                }
              }
            }
          }
        }
      }
    }