-
Notifications
You must be signed in to change notification settings - Fork 466
refactor: split AbstractConnectionResolver::get_args() and ::get_query_args() into ::prepare_*() methods
#3124
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
Merged
jasonbahl
merged 9 commits into
wp-graphql:develop
from
justlevine:dev/refactor-get_args
May 8, 2024
Merged
refactor: split AbstractConnectionResolver::get_args() and ::get_query_args() into ::prepare_*() methods
#3124
jasonbahl
merged 9 commits into
wp-graphql:develop
from
justlevine:dev/refactor-get_args
May 8, 2024
Conversation
This file contains hidden or 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
…s_valid_model()`
…s()` into `prepare_*()`
AbstractConnectionResolver::get_args() to ::prepare_args()AbstractConnectionResolver::get_args() to ::prepare_args()
…epare_query_args()`
AbstractConnectionResolver::get_args() to ::prepare_args()AbstractConnectionResolver::get_args() and ::get_query_args() into ::prepare() methods
AbstractConnectionResolver::get_args() and ::get_query_args() into ::prepare() methodsAbstractConnectionResolver::get_args() and ::get_query_args() into ::prepare_*() methods
|
Code Climate has analyzed commit b4aad63 and detected 12 issues on this pull request. Here's the issue category breakdown:
View more on Code Climate. |
Collaborator
Author
|
Codeclimate issues are preexisting, just getting reflagged because the method names changed. |
This was referenced May 4, 2024
The merge-base changed after approval.
jasonbahl
previously approved these changes
May 8, 2024
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
component: connections
Relating to GraphQL Connections
needs: reviewer response
This needs the attention of a codeowner or maintainer
scope: api
Issues related to access functions, actions, and filters
status: in review
Awaiting review before merging or closing
type: enhancement
Improvements to existing functionality
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 PR makes the following changes to
AbstractConnectionResolver:::get_args()and::get_query_args()now instantiateAbstractConnectionResolver::$argsand::$query_argsonly once.AbstractConnectionResolver::prepare_args()and::prepare_query_args().get_args()andget_query_args()have been replaced in the child resolvers with their::prepare_()counterpart.This improves the DX by reducing the amount of boilerplate needed when extending the AbstractConnectionResolver class, and improving lifecycle consistency, with potential performance benefits for child classes with complex args preparation logic.
There are no breaking changes in this PR.
Important
This PR requires #3123 which should be merged first.
The relevant diff for this PR can be seen at 77d99b9
Does this close any currently open issues?
Part of #2749
Any relevant logs, error output, GraphiQL screenshots, etc?
Any other comments?
AbstractConnectionResolver::$argsand::$query_argsare still manually instantiated and theirgraphql_connection_*filters applied inside the class constructor to maintain b/c compatibility with classes that are currently overloading::get_args()or::get_query_args()directly.Where has this been tested?
Operating System: Ubuntu 20.04 (wsl2 + devilbox + php8.1.15)
WordPress Version: 6.5.2