MCPcopy Create free account
hub / github.com/alpha2phi/python-apps / Arguments

Class Arguments

hackernews/backend-python/users/schema.py:15–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13 user = graphene.Field(UserType)
14
15 class Arguments:
16 username = graphene.String(required=True)
17 password = graphene.String(required=True)
18 email = graphene.String(required=True)
19
20 def mutate(self, info, username, password, email):
21 user = get_user_model()(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected