Open c0dezer019 opened 11 months ago
One note on this, we'll probably generate an empty method instead of what you wrote, as it won't be easy to generate something that's actually valid (and useful)
@strawberry.type
class Mutation:
@strawberry.mutation
def create_member(self, name: str) -> Member:
...
Feature Request Type
Description
What it does
schema-codegen currently generates the following from the schema:
Here's the schema for reference:
What it should do
Instead, it should generate the following for our mutations:
Upvote & Fund