Created
August 25, 2023 12:11
-
-
Save serefyarar/9156409634bf7753f6736e0d44641666 to your computer and use it in GitHub Desktop.
Book Draft
This file contains 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
type Book { | |
name: String! @string(maxLength: 255) | |
editor: Person @relation | |
description: String! @string(maxLength: 1000) | |
inLanguage: String! @string(maxLength: 50) | |
keywords: [String!]! @list(maxLength: 20) | |
isbn: [String!]! @list(maxLength: 5) | |
publisher: Publisher @relation | |
datePublished: Date | |
locationCreated: Place @relation | |
license: URI | |
} | |
type Person { | |
name: String! @string(maxLength: 100) | |
} | |
type Publisher { | |
name: String! @string(maxLength: 100) | |
url: URI | |
} | |
type Place { | |
address: PostalAddress @relation | |
} | |
type PostalAddress { | |
addressLocality: String! @string(maxLength: 100) | |
} |
This file contains 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
{ | |
"Book": { | |
"name": "Wallerstein 2.0: Thinking and Applying World-Systems Theory in the 21st Century", | |
"editor": { | |
"name": "Jacob, Frank" | |
}, | |
"description": "Immanuel Wallerstein's world-systems theory can help to better understand and describe developments of the 21st century. The contributors address the possibilities to reread Wallerstein's theoretical thoughts and ideas that are related to different disciplines in the humanities and social sciences. The presented interdisciplinary approach of this anthology thereby intends to highlight the broader value of Wallerstein's ideas, even almost five decades after the famous sociologist and economic historian first expressed them.", | |
"inLanguage": "English", | |
"keywords": ["Immanuel Wallerstein", "World-systems Theory", "Globalization", "Education", "Society", "Sociology of Development", "Sociological Theory", "Political Sociology", "Migration", "Sociology"], | |
"isbn": ["9783839460443", "9783837660449", "9783839460443"], | |
"publisher": { | |
"name": "transcript Verlag", | |
"url": "https://www.transcript-verlag.de/" | |
}, | |
"datePublished": "2023-01-01", | |
"locationCreated": { | |
"address": { | |
"addressLocality": "Bielefeld" | |
} | |
}, | |
"license": "https://creativecommons.org/licenses/by-nc/4.0/" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment