Strawberry shake - Exec(1,1) - All operation must be named

 If you have a query with name then you will get this error during dotnet build. For example, 

query {    <--- missing name 

   book {

    title

   }

}


When you change it  this below, then you will not get a compilation error. Noticed we have appended query with GetBook.

query GetBook {

   book {

    title

   }

}


Comments

Popular posts from this blog

The specified initialization vector (IV) does not match the block size for this algorithm