We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
FIrst of all this plugin is wonderful and just what I was looking for. But question, if I have a query like this:
query findManyAgreements($cursor: AgreementsWhereUniqueInput, $distinct: [AgreementsScalarFieldEnum!], $orderBy: [AgreementsOrderByWithRelationAndSearchRelevanceInput!], $skip: Int, $take: Int, $where: AgreementsWhereInput){ findManyAgreements(cursor: $cursor, distinct: $distinct, orderBy: $orderBy, skip: $skip, take: $take, where: $where){ content created excerpt id image mediamanager name reference_id shop_id type updated user_id } }
and wanted it to be generated as this instead:
query findManyAgreements{ findManyAgreements{ content created excerpt id image mediamanager name reference_id shop_id type updated user_id } }
How would I do that, even if it means to adjust the code in the plugin, just need to know where to look. Thank you in advance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FIrst of all this plugin is wonderful and just what I was looking for. But question, if I have a query like this:
and wanted it to be generated as this instead:
How would I do that, even if it means to adjust the code in the plugin, just need to know where to look. Thank you in advance.
The text was updated successfully, but these errors were encountered: