Incremental introspection
See original GitHub issueHello,
We are working on database with 10k+ tables. Each table maps into several graphql types and fields.
We have a problem with introspecting graphiql, which fails on serializing such huge schema at once.
Can you provide incremental introspection loading when each documentation screen loads their data separately?
Maybe it can be startup option --inctremental-introspection
?
Best regards, Dmitriy.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:6
- Comments:10 (6 by maintainers)
Top Results From Across the Web
Endless introspection. – IDEs Support (IntelliJ Platform)
It is not even able to introspect it with default memory settings. ... It's clearly no doing an efficient "incremental" introspection.
Read more >Performing Introspection on a Data Source Connection
Introspection is a method of inspecting a physical data source for metadata elements. When you perform introspection, structural information in the data ...
Read more >Continuous Online Self-Monitoring Introspection Circuitry for ...
Continuous Online Self-Monitoring Introspection Circuitry for Timing Repair by Incremental Partial-Reconfiguration (COSMIC TRIP).
Read more >Refreshing Reflections - Dremio docs
It is also possible to use this type when a reflection is not sorted or partitioned. Incremental refresh. Dremio appends data to the...
Read more >What is introspection? (Reference) - Prisma
Learn how you can introspect your database to generate a data model into your Prisma schema.
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 FreeTop 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
Top GitHub Comments
I use pre-builded schema.json from introspection query for service with 10k+ types. And init application with it.
Also need to add function buildClientSchema to globals. Find it in graphiql.js and add window.buildClientSchema= export.buildClientSchema = …
And finally use compression (br, gzip) for faster schema.json loading Have fun
facebook has a 100mb schema, and found the best option was to load the schema from a json file on the local filesystem the introspection query and the http payload are otherwise very slow. hoping to support this in graphiql 1.1.0