acro5piano/typed-graphqlify

API refactor request-use object methods to call query/mutation

capaj opened this issue · 2 comments

capaj commented

apollo client and many other clients have this kind of API:

graphqlify.mutation({...})
graphqlify.query({...})

and it feels nicer to write/read than

graphqlify('mutation', {...})
graphqlify('query', {

also saves one character.
So I know it's a little presumptuous to ask you to change it, but IMHO it would help people who are mostly used to apollo/urql up to speed faster.

If you'd agree I could even open a PR to address this.

Thank you for your feedback, @capaj !

So nice suggestion, I completely agree with you. Could you create a PR?

capaj commented

Sure. Give me a an hour or so.