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

11 lines
242 B
Python

import graphene
from graphene import relay
from api.graphene_wagtail import GenericStreamFieldType
class ContentBlockInterface(relay.Node):
title = graphene.String()
contents = GenericStreamFieldType()
type = graphene.String()