Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
It's quite possible to have a project but not always need GraphQL to be fully booted.
With this PR booting the types and schema is deferred to only when the
'graphql'
service truly is requested. Mostly this means artisan commands / worker / scheduler will boot faster unless you specifically use some GraphQL related features.Benchmarks
A Private project with ~100 Types, ~50 mutations and ~30 queries, running pure artisan:
until false; do time ./artisan >/dev/null; done 2>&1 | grep real
Without this PR
With this PR
Even this the small project I tested, the savings can be ~50 to ~100ms.
Implementation detail
Booting the types is a recursive behavior because types itself may reference the facade via
GraphQL::type(…)
, that's why the types cannot be booted correctly within the singleton registration itself. This is especially true for interfaces.For this reason
afterResolving
is used, which ensures the service is also properly registered.