skillbox/server/user/inputs.py

9 lines
174 B
Python

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