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

8 lines
209 B
Python

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