Describe the bug
When a limit exists on a previous tab's query, a new tab will enter the previous tab's query again
Type definitions
Some simple type definitions:
type Movie @node {
title: String!
actors: [Person!]! @relationship(type: "ACTED_IN", direction: IN)
}
type Person @node {
name: String
movies: [Movie!]!
}
To Reproduce
Steps to reproduce the behavior:
- In GraphQL Toolbox build a schema and go to the query tab
- Enter a query which includes a limit option, like this:
query MyQuery {
movies(limit: 10) {
title
}
}
- Add a new tab with the
+
button, it will look normal and empty
- Start entering text (more than one character, to go beyond the initial intellisense) into the blank query input
- You'll now see the previous tab's query again and you'll be editing the limit option
Expected behavior
Nothing from the previous tab should be carried over.
Screenshots
