-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: performance issues for mapping field groups to the Schema #152
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chore: prep for launch on the .org repo
… not try and dynamically determine location rules at Schema Generation time.
…r field groups that have graphql_types defined, but still support field groups that don't have graphql_types defined.
… Field Group Location rules to reduce redundancy - remove unneeded LocationRules - update OptionsPageTest to clear the schema during setUp
…phQL\Utils\Utils - normalize location rules to be mapped with strolower
…gistered to the Schema - Use the registered field names and keys to determine wether or not to resolve the field from the post itself (if revision meta is supported) or the parent (if it's not).
josephfusco
approved these changes
Jan 19, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! I was able to see a significant performance improvement applying these changes. Much better than before!
Merged
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
compat: possible break
There is a possibility that this might lead to breaking changes, but not confirmed yet
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.
What does this implement/fix? Explain your changes.
This addresses some performance issues related to mapping the ACF Field Groups to the Schema.
Currently there's logic in place that tries to determine what GraphQL Types in the schema should have a field to access the ACF Field Group from by parsing the field group's "location rules".
This logic is expensive and slow and already runs in the ACF Admin UI when creating/updating field groups, storing the types as the
graphql_types
field on the ACF Field Group.Instead of running the location mapping at Schema Generation, we should rely on the field groups already defining a "graphql_types" field.
Plugin Build
Here's a built version of the plugin with these changes: wpgraphql-acf.zip
Does this close any currently open issues?
no (issue discussed in Slack)
Any relevant logs, error output, GraphiQL screenshots, etc?
I used an
acf-json
directory provided by a user. The config generated 234 Object Types implementing theAcfFieldGroup
Interface.Before
Trying to load the GraphQL Schema would take, well, a REALLY long time.
And executing a simple query such as:
would also take a LONG time:
😱 😱 😱
AFTER
Now the Schema, with all 234 AcfFieldGroup Types, loads MUCH faster:
And the simple posts query also loads MUCH faster:
Any other comments?
This MIGHT be a breaking change for some users that don't have
graphql_types
defined on their ACF Field Groups.Need to investigate this a bit more.
For users that have
graphql_types
defined on their ACF Field Groups this will work already.