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
As decided in petroly-initiative/petroly-django#60, we moved on from all graphene based libs to the strawberry based libs.
graphene
strawberry
we see that in petroly-initiative/petroly-django#60 (comment) the API is ready to work on.
This transformation made some breaking changes in the API, we want to update files:
mutations.js
queries.js
The text was updated successfully, but these errors were encountered:
btw All updates on the main branch is not advised at this stage, until the transformation succeeds
main
@Muhab2001 give me a sign to start working on from the last commit from main
Sorry, something went wrong.
Yes the main branch is up-to-date, you can branch off it
the following mutation is deprecated
export const interactedCommunityMutation = gql` mutation InteractedCommunity($id: ID!) { hasInteractedCommunity(ID: $id) { liked reported } } `;
replaced with the query
export const communityInteractionsQuery = gql` query CommunityInteractions($id: ID!) { communityInteractions(pk: $id) { liked reported } } `;
cursor-based
ammar-faifi
Successfully merging a pull request may close this issue.
As decided in petroly-initiative/petroly-django#60, we moved on from all
graphene
based libs to thestrawberry
based libs.we see that in petroly-initiative/petroly-django#60 (comment) the API is ready to work on.
This transformation made some breaking changes in the API, we want to update files:
mutations.js
queries.js
The text was updated successfully, but these errors were encountered: