Sometimes I would like to see all the data and all fields available, without having to list all of them. In this case, it would be nice if GraphiQL supported me typing * and then autocompleted with all available fields. For example, when I type:
If user contained 4 fields I would want GraphiQL to autocomplete and fill in the query as:
{
user {
id
name
location
created_at
}
}