Created
January 21, 2019 05:31
-
-
Save jkhaui/3e18d7a233255f9dcaa16cc4797b4430 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment