-
-
Notifications
You must be signed in to change notification settings - Fork 266
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
GraphQL Macroable #592
GraphQL Macroable #592
Conversation
A simple example of where this would be useful, I've inherited a GraphQL API where the type returned can change based on conditions (don't ask); the codebase has lots of this: public function type() : Type
{
return $this->hasPagination()
? GraphQL::paginate('User')
: Type::listOf(GraphQL::type('User'));
} It'd be great to wrap this up into a macro like this: GraphQL::macro('paginateOrListOf', function (string $name) : Type {
return Something::hasPagination()
? GraphQL::paginate($name)
: Type::listOf(GraphQL::type($name));
}); So my queries can do: public function type() : Type
{
return GraphQL::paginateOrListOf('User');
} Without having to share that logic via inheritence, traits, or some other class. This allows the end user to expand upon the provided facade statics like |
It's my personal opinion that Macroable that way is an abomination for proper software development, i.e. what you said would be the "correct way"
But I see the signs (read: pressure from the community) so I'm not vetoing it (just dying a little inside). So let's move forward 🕳 What you be so kind and:
Btw, very nice first contribution ❤️ |
@mfn awesome 👏 I'll do those things, and your objection will be noted in the ship's log 🙃 |
@mfn readme updated and test added. For the readme I copied and reworded https://laravel.com/docs/6.x/responses#response-macros Also submitted some unrelated readme fixes that this is based against in #593 |
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.
Thanks!
https://github.com/rebing/graphql-laravel/releases/tag/5.0.0 has been released which includes this! |
Summary
Adds macro support to the GraphQL service/facade. I am often finding myself wanting Arr/Str-esque helpers for GraphQL behaviours (like spinning up Type's), and given static calls to the GraphQL facade are already used in lots of places, this seems to fit well.
Type of change
Checklist
Let me know if you need anything I've crossed out.