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

9 lines
151 B
Python

import graphene
class ModuleInterface(graphene.Interface):
pk = graphene.Int()
def resolve_pk(self, info, **kwargs):
return self.id