OlegIlyenko / graphql-toolbox

GraphQL Toolbox - a set of GraphQL tools to help with GraphQL server and client development.

Home Page:http://toolbox.sangria-graphql.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Weird introspection query

alexander-myltsev opened this issue · comments

When I just load graphiql interface (same behaviour in incognito mode), it immediately sends introspection query:

image

For input query as follows:

query($name: String!) {
  nameResolver(names: [$name]) {
    total
  }
}

variables:
{
  "name": "Ctenidium molluscum var. compactum"
}

it sends query, and then in second that introspection query, that actually overlaps the result.