aPureBase / KGraphQL

Pure Kotlin GraphQL implementation
https://kgraphql.io
MIT License
298 stars 58 forks source link

Property __typename does not exist in Query and Mutation #215

Open adi9090 opened 1 year ago

adi9090 commented 1 year ago

Adding __typename as a parameter in query or mutation is not working

  query heroes{
    __typename
  }

  mutation add {
    __typename
  }

These will return an errors: Property typename on Query does not exist Property typename on Mutation does not exist