from graphene import ObjectType, String, Field, Int
# Schema Objects
class CitationObject(ObjectType):
title = String()
oclc = Int()
language = String()
publisher = String()
city = String()
publish_year = Int()
pages = Int()