jkhaui
1/21/2019 - 5:31 AM

testschema.py

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()