skillbox/server/user/inputs.py

9 lines
172 B
Python

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