skillbox/server/books/schema/interfaces/chapter.py

8 lines
217 B
Python

import graphene
from graphene import relay
from graphene_django.filter import DjangoFilterConnectionField
class ChapterInterface(graphene.Interface):
description = graphene.String()
title = graphene.String()