Closed muemi03 closed 4 months ago
Woh, we really appreciate your early feedback. This branch is still under development. I will definitely update you once it is ready to merge.
Thanks, Raju
Yes, of course, I am aware of the dev state.... Sorry for having a preview already. I am just too curious on these things ;) Thank you ...Michael
Fixed the query generation containing multiple arguments. Now, they are comma-separated.
Thanks.
Closing this issue, as it is solved. Thanks a million.
Hi Team.
love it !! having a flexible way to call any query which is availble, without the necessity to create queries/*.gql and json file is just geniusly. Great stuff ! minor issue :
The two lines are missing the argument/parameter seperator (typically a comma + space):
query federatedUserByName($providerName: String!$name: String!) { federatedUserByName(providerName: $providerNamename: $name) {
might better look like:
query federatedUserByName($providerName: String!, $name: String!) { federatedUserByName(providerName: $providerName, name: $name) {
Thanks for this great improvement !!
...Michael