skillbox/server/users/inputs.py

14 lines
294 B
Python

import graphene
from graphene import InputObjectType
class SchoolClassInput(InputObjectType):
id = graphene.ID()
name = graphene.String()
year = graphene.Int()
class PasswordUpdateInput(InputObjectType):
old_password = graphene.String()
new_password = graphene.String()