Skip to main content

GraphQL Script to extract Author Affiliations from the Thoth Catalog

{ affiliations(publishers: ["9c41b13c-cecc-4f6a-a151-be4682915ef5"], limit: 9999) { institution { institutionName countryCode updatedAt } contribution { fullName contributionType contributor { orcid } work { title subtitle workType workStatus publicationDate landingPage updatedAtWithRelations} } } }

When you want these data for all publishers:

{ affiliations(limit: 9999) { institution { institutionName countryCode updatedAt} contribution { fullName contributionType contributor { orcid } work { title subtitle workType workStatus publicationDate landingPage updatedAtWithRelations} } } }