Auto complete like graphiql
See original GitHub issueThis issue pertains to the following package(s):
- GraphQL Playground - Electron App
- GraphQL Playground HTML
- GraphQL Playground
- GraphQL Playground Express Middleware
- GraphQL Playground Hapi Middleware
- GraphQL Playground Koa Middleware
- GraphQL Playground Lambda Middleware
What OS and OS version are you experiencing the issue(s) on?
Kubuntu 16.04
What version of graphql-playground(-electron/-middleware) are you experiencing the issue(s) on?
How do we see the version? Its the latest bundled in Prisma as of 15 May 2018
Its not a bug, only a suggestion:
You MUST have the feature of graphiql:
- CTRL+ENTER in front of
{ users | }
auto-completes with ALL fields of a User (ie it becomes{ users {id, name, dob, ...} }
) - CTRL+ENTER in front of
{ users { | } }
auto-completes with required or ID fields of a User (ie it becomes{ users { id } }
)
Life is so much better with these 😃
Issue Analytics
- State:
- Created 5 years ago
- Reactions:37
- Comments:19 (2 by maintainers)
Top Results From Across the Web
Auto complete like graphiql · Issue #683 - GitHub
This issue pertains to the following package(s): GraphQL Playground - Electron App GraphQL Playground HTML GraphQL Playground GraphQL Playground Express ...
Read more >Search Autocomplete Suggestions with GraphQL Query and ...
I was implementing a search suggestion on input change feature — so the user can see the suggested results as they type in...
Read more >Autocompletion in GraphQL resolvers with JavaScript - Prisma
When using GraphQL with TypeScript, you always get autocompletion for the Prisma Client instance in your GraphQL resolvers because then the context object ......
Read more >React Native Autocomplete with GraphQL Cache
This short tutorial will show you how to use GraphQL cache for scenarios where you need a fast response and good performance.
Read more >GraphiQL: How to populate all fields - graphql - Stack Overflow
github.com/graphql/graphiql/blob/… It seems to autofill 'id', 'edges' and 'node' fields. If none of those are found, it adds all leaves it can ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Here is my vision:
For all who are interested in this feature, it’s implemented in Altair GraphQL IDE. 😉