diff --git a/.github/workflows/check_changelog.yml b/.github/workflows/check_changelog.yml new file mode 100644 index 00000000..71e8dfdb --- /dev/null +++ b/.github/workflows/check_changelog.yml @@ -0,0 +1,11 @@ +name: check-changelog +on: + pull_request: + +jobs: + check-changelog: + runs-on: ubuntu-latest + steps: + - uses: tarides/changelog-check-action@v2 + with: + changelog: CHANGELOG.md diff --git a/.github/workflows/run_migrations.yml b/.github/workflows/run_migrations.yml index 776c95a6..9b928204 100644 --- a/.github/workflows/run_migrations.yml +++ b/.github/workflows/run_migrations.yml @@ -66,3 +66,8 @@ jobs: with: command: run args: migrate + - name: Revert migrations + uses: actions-rs/cargo@v1 + with: + command: run + args: migrate --revert diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e1b064a..c39e889a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [[0.11.16]](https://github.com/thoth-pub/thoth/releases/tag/v0.11.16) - 2024-02-19 +### Changed + - [561](https://github.com/thoth-pub/thoth/issues/561) - Add "Publisher Website" as a location platform + - [553](https://github.com/thoth-pub/thoth/pull/553) - Upgrade rust to `1.76.0` in production and development `Dockerfile` + - [305](https://github.com/thoth-pub/thoth/issues/305) - Update rust edition to 2021 + - [555](https://github.com/thoth-pub/thoth/pull/555) - Remove thoth-client's schema.json with auto-generated GraphQL schema language file on compilation + +### Added + - [244](https://github.com/thoth-pub/thoth/issues/244) - Expose GraphQL schema file in /schema.graphql + - [503](https://github.com/thoth-pub/thoth/issues/503) - Allow reverting migrations in the CLI and check that migrations can be reverted in run-migration github action + - [557](https://github.com/thoth-pub/thoth/pull/557) - Added github action to chech that the changelog has been updated on PRs + ## [[0.11.15]](https://github.com/thoth-pub/thoth/releases/tag/v0.11.15) - 2024-01-18 ### Changed - [536](https://github.com/thoth-pub/thoth/issues/536) - Rename "SciELO" location platform to "SciELO Books" diff --git a/Cargo.lock b/Cargo.lock index 40ebcb84..d5160566 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3402,7 +3402,7 @@ dependencies = [ [[package]] name = "thoth" -version = "0.11.15" +version = "0.11.16" dependencies = [ "cargo-husky", "clap", @@ -3417,7 +3417,7 @@ dependencies = [ [[package]] name = "thoth-api" -version = "0.11.15" +version = "0.11.16" dependencies = [ "actix-web", "argon2rs", @@ -3446,7 +3446,7 @@ dependencies = [ [[package]] name = "thoth-api-server" -version = "0.11.15" +version = "0.11.16" dependencies = [ "actix-cors", "actix-identity", @@ -3462,7 +3462,7 @@ dependencies = [ [[package]] name = "thoth-app" -version = "0.11.15" +version = "0.11.16" dependencies = [ "anyhow", "chrono", @@ -3491,7 +3491,7 @@ dependencies = [ [[package]] name = "thoth-app-server" -version = "0.11.15" +version = "0.11.16" dependencies = [ "actix-cors", "actix-web", @@ -3500,7 +3500,7 @@ dependencies = [ [[package]] name = "thoth-client" -version = "0.11.15" +version = "0.11.16" dependencies = [ "chrono", "graphql_client", @@ -3516,7 +3516,7 @@ dependencies = [ [[package]] name = "thoth-errors" -version = "0.11.15" +version = "0.11.16" dependencies = [ "actix-web", "csv", @@ -3537,7 +3537,7 @@ dependencies = [ [[package]] name = "thoth-export-server" -version = "0.11.15" +version = "0.11.16" dependencies = [ "actix-cors", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index 9e0bb1f5..f19c6dea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "thoth" -version = "0.11.15" +version = "0.11.16" authors = ["Javier Arias ", "Ross Higman "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "GraphQL API for bibliographic data" repository = "https://github.com/thoth-pub/thoth" @@ -16,11 +16,11 @@ maintenance = { status = "actively-developed" } members = ["thoth-api", "thoth-api-server", "thoth-app", "thoth-app-server", "thoth-client", "thoth-errors", "thoth-export-server"] [dependencies] -thoth-api = { version = "0.11.15", path = "thoth-api", features = ["backend"] } -thoth-api-server = { version = "0.11.15", path = "thoth-api-server" } -thoth-app-server = { version = "0.11.15", path = "thoth-app-server" } -thoth-errors = { version = "0.11.15", path = "thoth-errors" } -thoth-export-server = { version = "0.11.15", path = "thoth-export-server" } +thoth-api = { version = "0.11.16", path = "thoth-api", features = ["backend"] } +thoth-api-server = { version = "0.11.16", path = "thoth-api-server" } +thoth-app-server = { version = "0.11.16", path = "thoth-app-server" } +thoth-errors = { version = "0.11.16", path = "thoth-errors" } +thoth-export-server = { version = "0.11.16", path = "thoth-export-server" } clap = { version = "4.4.7", features = ["cargo", "env"] } dialoguer = { version = "0.11.0", features = ["password"] } dotenv = "0.15.0" diff --git a/Dockerfile b/Dockerfile index 50dec089..48837b88 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG RUST_IMAGE=rust:1.75.0 -ARG MUSL_IMAGE=clux/muslrust:1.75.0 +ARG RUST_IMAGE=rust:1.76.0 +ARG MUSL_IMAGE=clux/muslrust:1.76.0 FROM ${RUST_IMAGE} as wasm diff --git a/Dockerfile.dev b/Dockerfile.dev index fb47f2d3..225b435d 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -ARG RUST_VERSION=1.75.0 +ARG RUST_VERSION=1.76.0 FROM rust:${RUST_VERSION} @@ -48,6 +48,7 @@ RUN mkdir thoth-api/src thoth-api-server/src thoth-app/src \ RUN touch thoth-api/src/lib.rs thoth-api-server/src/lib.rs \ thoth-app/src/lib.rs thoth-app-server/src/lib.rs thoth-client/src/lib.rs \ thoth-errors/src/lib.rs thoth-export-server/src/lib.rs +RUN echo "fn main() {}" > thoth-client/build.rs RUN wasm-pack build thoth-app/ \ --target web \ --debug diff --git a/src/bin/thoth.rs b/src/bin/thoth.rs index 1595db5d..ac3cf990 100644 --- a/src/bin/thoth.rs +++ b/src/bin/thoth.rs @@ -1,10 +1,10 @@ -use clap::{crate_authors, crate_version, value_parser, Arg, Command}; +use clap::{crate_authors, crate_version, value_parser, Arg, ArgAction, Command}; use dialoguer::{console::Term, theme::ColorfulTheme, Input, MultiSelect, Password, Select}; use dotenv::dotenv; use std::env; use thoth::api::account::model::{AccountData, LinkedPublisher}; use thoth::api::account::service::{all_emails, all_publishers, register, update_password}; -use thoth::api::db::{establish_connection, run_migrations}; +use thoth::api::db::{establish_connection, revert_migrations, run_migrations}; use thoth::api_server; use thoth::app_server; use thoth::export_server; @@ -129,7 +129,16 @@ fn thoth_commands() -> Command { .about(env!("CARGO_PKG_DESCRIPTION")) .subcommand_required(true) .arg_required_else_help(true) - .subcommand(Command::new("migrate").about("Run the database migrations")) + .subcommand( + Command::new("migrate") + .about("Run the database migrations") + .arg( + Arg::new("revert") + .long("revert") + .help("Revert all database migrations") + .action(ArgAction::SetTrue), + ), + ) .subcommand( Command::new("start") .about("Start an instance of Thoth API or GUI") @@ -240,7 +249,10 @@ fn main() -> ThothResult<()> { } _ => unreachable!(), }, - Some(("migrate", _)) => run_migrations(), + Some(("migrate", migrate_matches)) => match migrate_matches.get_flag("revert") { + true => revert_migrations(), + false => run_migrations(), + }, Some(("init", init_matches)) => { let host = init_matches.get_one::("host").unwrap().to_owned(); let port = init_matches.get_one::("port").unwrap().to_owned(); diff --git a/thoth-api-server/Cargo.toml b/thoth-api-server/Cargo.toml index 525c0ec4..63e1a424 100644 --- a/thoth-api-server/Cargo.toml +++ b/thoth-api-server/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "thoth-api-server" -version = "0.11.15" +version = "0.11.16" authors = ["Javier Arias ", "Ross Higman "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "Actix instance serving Thoth's GraphQL endpoints" repository = "https://github.com/thoth-pub/thoth" readme = "README.md" [dependencies] -thoth-api = { version = "0.11.15", path = "../thoth-api", features = ["backend"] } -thoth-errors = { version = "0.11.15", path = "../thoth-errors" } +thoth-api = { version = "0.11.16", path = "../thoth-api", features = ["backend"] } +thoth-errors = { version = "0.11.16", path = "../thoth-errors" } actix-web = "4.4.1" actix-cors = "0.7.0" actix-identity = "0.6.0" diff --git a/thoth-api-server/src/lib.rs b/thoth-api-server/src/lib.rs index 1c1f72df..04d16ed7 100644 --- a/thoth-api-server/src/lib.rs +++ b/thoth-api-server/src/lib.rs @@ -84,6 +84,11 @@ async fn graphql_index(config: Data) -> HttpResponse { )) } +#[get("/schema.graphql")] +async fn graphql_schema(st: Data>) -> HttpResponse { + HttpResponse::Ok().body(st.as_schema_language()) +} + #[post("/graphql")] async fn graphql( st: Data>, @@ -192,6 +197,7 @@ fn config(cfg: &mut ServiceConfig) { cfg.service(login_credentials); cfg.service(login_session); cfg.service(account_details); + cfg.service(graphql_schema); } #[allow(clippy::too_many_arguments)] diff --git a/thoth-api/Cargo.toml b/thoth-api/Cargo.toml index 4515f6af..de7ef4df 100644 --- a/thoth-api/Cargo.toml +++ b/thoth-api/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "thoth-api" -version = "0.11.15" +version = "0.11.16" authors = ["Javier Arias ", "Ross Higman "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "GraphQL API for bibliographic data" repository = "https://github.com/thoth-pub/thoth" @@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" } backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web"] [dependencies] -thoth-errors = { version = "0.11.15", path = "../thoth-errors" } +thoth-errors = { version = "0.11.16", path = "../thoth-errors" } actix-web = { version = "4.4.1", optional = true } argon2rs = "0.2.5" isbn2 = "0.4.0" diff --git a/thoth-api/migrations/v0.11.16/down.sql b/thoth-api/migrations/v0.11.16/down.sql new file mode 100644 index 00000000..920646da --- /dev/null +++ b/thoth-api/migrations/v0.11.16/down.sql @@ -0,0 +1,34 @@ +UPDATE location SET location_platform = 'Other' WHERE location_platform IN ( + 'Publisher Website' +); + +-- Drop the default and unique constraint, otherwise it won't be able to cast to text +ALTER TABLE location ALTER COLUMN location_platform DROP DEFAULT; +DROP INDEX location_uniq_platform_idx; + +ALTER TABLE location ALTER COLUMN location_platform TYPE text; +DROP TYPE location_platform; +CREATE TYPE location_platform AS ENUM ( + 'Project MUSE', + 'OAPEN', + 'DOAB', + 'JSTOR', + 'EBSCO Host', + 'OCLC KB', + 'ProQuest KB', + 'ProQuest ExLibris', + 'EBSCO KB', + 'JISC KB', + 'Google Books', + 'Internet Archive', + 'ScienceOpen', + 'SciELO Books', + 'Other' + ); +ALTER TABLE location ALTER location_platform TYPE location_platform USING location_platform::location_platform; +ALTER TABLE location + ALTER COLUMN location_platform SET DEFAULT 'Other'::location_platform; + +CREATE UNIQUE INDEX location_uniq_platform_idx + ON location (publication_id, location_platform) + WHERE NOT location_platform = 'Other'::location_platform; diff --git a/thoth-api/migrations/v0.11.16/up.sql b/thoth-api/migrations/v0.11.16/up.sql new file mode 100644 index 00000000..addc5d68 --- /dev/null +++ b/thoth-api/migrations/v0.11.16/up.sql @@ -0,0 +1 @@ +ALTER TYPE location_platform ADD VALUE 'Publisher Website'; diff --git a/thoth-api/src/db.rs b/thoth-api/src/db.rs index 8e82f279..cc981931 100644 --- a/thoth-api/src/db.rs +++ b/thoth-api/src/db.rs @@ -39,3 +39,11 @@ pub fn run_migrations() -> ThothResult<()> { Err(error) => Err(ThothError::DatabaseError(error.to_string())), } } + +pub fn revert_migrations() -> ThothResult<()> { + let mut connection = establish_connection().get().unwrap(); + match connection.revert_all_migrations(MIGRATIONS) { + Ok(_) => Ok(()), + Err(error) => Err(ThothError::DatabaseError(error.to_string())), + } +} diff --git a/thoth-api/src/model/location/mod.rs b/thoth-api/src/model/location/mod.rs index 1276b14e..faf28c29 100644 --- a/thoth-api/src/model/location/mod.rs +++ b/thoth-api/src/model/location/mod.rs @@ -60,6 +60,9 @@ pub enum LocationPlatform { #[cfg_attr(feature = "backend", db_rename = "SciELO Books")] #[strum(serialize = "SciELO Books")] ScieloBooks, + #[cfg_attr(feature = "backend", db_rename = "Publisher Website")] + #[strum(serialize = "Publisher Website")] + PublisherWebsite, #[cfg_attr(feature = "backend", db_rename = "Other")] #[default] Other, @@ -180,6 +183,10 @@ fn test_locationplatform_display() { ); assert_eq!(format!("{}", LocationPlatform::ScienceOpen), "ScienceOpen"); assert_eq!(format!("{}", LocationPlatform::ScieloBooks), "SciELO Books"); + assert_eq!( + format!("{}", LocationPlatform::PublisherWebsite), + "Publisher Website" + ); assert_eq!(format!("{}", LocationPlatform::Other), "Other"); } @@ -242,6 +249,10 @@ fn test_locationplatform_fromstr() { LocationPlatform::from_str("SciELO Books").unwrap(), LocationPlatform::ScieloBooks ); + assert_eq!( + LocationPlatform::from_str("Publisher Website").unwrap(), + LocationPlatform::PublisherWebsite + ); assert_eq!( LocationPlatform::from_str("Other").unwrap(), LocationPlatform::Other diff --git a/thoth-app-server/Cargo.toml b/thoth-app-server/Cargo.toml index d0f1f1b4..8c088c40 100644 --- a/thoth-app-server/Cargo.toml +++ b/thoth-app-server/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "thoth-app-server" -version = "0.11.15" +version = "0.11.16" authors = ["Javier Arias ", "Ross Higman "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "Actix instance serving Thoth's WASM GUI statically" repository = "https://github.com/thoth-pub/thoth" diff --git a/thoth-app/Cargo.toml b/thoth-app/Cargo.toml index 83a7dac2..a5ef442f 100644 --- a/thoth-app/Cargo.toml +++ b/thoth-app/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "thoth-app" -version = "0.11.15" +version = "0.11.16" authors = ["Javier Arias ", "Ross Higman "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "WASM APP for bibliographic data" repository = "https://github.com/thoth-pub/thoth" @@ -41,5 +41,5 @@ uuid = { version = "0.8.2", features = ["serde", "v4"] } # `getrandom` is a dependency of `uuid`, we need to explicitly import and include the `js` feature to enable wasm # https://docs.rs/getrandom/latest/getrandom/#webassembly-support getrandom = { version = "0.2", features = ["js"] } -thoth-api = { version = "0.11.15", path = "../thoth-api" } -thoth-errors = { version = "0.11.15", path = "../thoth-errors" } +thoth-api = { version = "0.11.16", path = "../thoth-api" } +thoth-errors = { version = "0.11.16", path = "../thoth-errors" } diff --git a/thoth-app/manifest.json b/thoth-app/manifest.json index ec91a9fc..8a0762f7 100644 --- a/thoth-app/manifest.json +++ b/thoth-app/manifest.json @@ -9,7 +9,7 @@ "start_url": "/?homescreen=1", "background_color": "#ffffff", "theme_color": "#ffdd57", - "version": "0.11.15", + "version": "0.11.16", "icons": [ { "src": "\/android-icon-36x36.png", diff --git a/thoth-client/.gitignore b/thoth-client/.gitignore new file mode 100644 index 00000000..4a1defe9 --- /dev/null +++ b/thoth-client/.gitignore @@ -0,0 +1 @@ +assets/schema.graphql diff --git a/thoth-client/Cargo.toml b/thoth-client/Cargo.toml index bfd00838..c038eb93 100644 --- a/thoth-client/Cargo.toml +++ b/thoth-client/Cargo.toml @@ -1,16 +1,17 @@ [package] name = "thoth-client" -version = "0.11.15" +version = "0.11.16" authors = ["Javier Arias ", "Ross Higman "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "GraphQL Client for bibliographic data" repository = "https://github.com/thoth-pub/thoth" readme = "README.md" +build = "build.rs" [dependencies] -thoth-api = {version = "0.11.15", path = "../thoth-api" } -thoth-errors = {version = "0.11.15", path = "../thoth-errors" } +thoth-api = {version = "0.11.16", path = "../thoth-api" } +thoth-errors = {version = "0.11.16", path = "../thoth-errors" } graphql_client = "0.13.0" chrono = { version = "0.4.31", features = ["serde"] } reqwest = { version = "0.11", features = ["json"] } @@ -19,3 +20,6 @@ reqwest-retry = "0.2.3" serde = "1.0" serde_json = "1.0" uuid = { version = "0.8.2", features = ["serde"] } + +[build-dependencies] +thoth-api = { version = "0.11.16", path = "../thoth-api", features = ["backend"] } diff --git a/thoth-client/assets/schema.json b/thoth-client/assets/schema.json deleted file mode 100644 index d4eb4d59..00000000 --- a/thoth-client/assets/schema.json +++ /dev/null @@ -1,22472 +0,0 @@ -{ - "data": { - "__schema": { - "directives": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "if", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "description": null, - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "name": "include" - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "if", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "description": null, - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "name": "skip" - } - ], - "mutationType": { - "name": "MutationRoot" - }, - "queryType": { - "name": "QueryRoot" - }, - "subscriptionType": null, - "types": [ - { - "description": "An organisation that produces and distributes written texts.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publisherId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publisherName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publisherShortname", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publisherUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on imprint_name and imprint_url", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"IMPRINT_NAME\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "ImprintOrderBy", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get imprints linked to this publisher", - "isDeprecated": false, - "name": "imprints", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Imprint", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Publisher", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "referenceOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "doi", - "type": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "unstructuredCitation", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "issn", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "isbn", - "type": { - "kind": "SCALAR", - "name": "Isbn", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "journalTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "articleTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "volumeTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "edition", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "author", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "volume", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "firstPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "componentNumber", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "standardDesignator", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "standardsBodyName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "standardsBodyAcronym", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "publicationDate", - "type": { - "kind": "SCALAR", - "name": "NaiveDate", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "retrievalDate", - "type": { - "kind": "SCALAR", - "name": "NaiveDate", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewReference", - "possibleTypes": null - }, - { - "description": "Field to use when sorting work relations list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WORK_RELATION_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RELATOR_WORK_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RELATED_WORK_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RELATION_TYPE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RELATION_ORDINAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "WorkRelationField", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ABK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ACE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ACH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ADA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ADY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AFA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AFH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AFR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AIN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AKA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AKK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ALB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ALE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ALG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ALT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AMH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ANG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ANP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "APA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ART" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ASM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ATH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AUS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AVA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AVE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AWA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AYM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AZE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BAD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BAI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BAK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BAM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BAN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BAQ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BAS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BAT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BEJ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BEL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BEM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BHO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BIH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BIK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BIN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BIS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BLA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BNT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BOS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BRA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BRE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BTK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BUA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BUG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BUL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BUR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BYN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CAD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CAI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CAT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CAU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CEB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CEL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CMC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CNR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CPE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CPF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CPP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CRE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CRH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CRP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CSB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CUS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CZE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DAK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DAN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DAY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DEL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DGR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DIN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DIV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DOI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DRA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DSB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DUA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DUM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DUT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DYU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DZO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EFI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EGY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EKA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ELX" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ENG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ENM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EPO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EWE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EWO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FAN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FAO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FAT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FIJ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FIL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FIN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FIU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FON" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FRE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FRM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FRO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FRR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FRS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FRY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FUL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FUR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GAA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GAY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GBA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GEM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GEO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GEZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GIL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GLA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GLE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GLG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GLV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GMH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GOH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GON" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GOR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GOT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GRB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GRC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GRE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GRN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GSW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GUJ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GWI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HAI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HAT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HAU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HAW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HEB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HIL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HIM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HIN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HIT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HMN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HMO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HRV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HSB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HUN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HUP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IBA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IBO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ICE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IDO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "III" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IJO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IKU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ILE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ILO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IND" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IPK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IRA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IRO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ITA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JAV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JBO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JPN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JPR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JRB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KBD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KHA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KHI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KHM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KHO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KIK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KIN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KIR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KMB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KOK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KOM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KON" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KOR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KOS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KPE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KRC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KRL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KRO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KRU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KUA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KUM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KUR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KUT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LEZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LIM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LIN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LIT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LOL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LOZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LTZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LUA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LUB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LUG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LUI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LUN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LUO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LUS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MDF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MDR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MGA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MIC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MIN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MIS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MKH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MLG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MLT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MNC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MNI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MNO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MOH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MON" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MOS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MUL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MUN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MUS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MWL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MWR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MYN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MYV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NAH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NAI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NAP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NAU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NAV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NBL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NDE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NDO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NDS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NEP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NEW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NIA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NIC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NIU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NNO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NOB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NOG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NON" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NOR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NQO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NSO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NUB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NWC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NYA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NYM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NYN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NYO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NZI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OCI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OJI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ORI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ORM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OSA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OSS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OTA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OTO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PEO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PHI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PHN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PLI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "POL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PON" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "POR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PRA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PRO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PUS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "QAA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "QUE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RAJ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RAP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ROA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ROH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ROM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RUM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RUN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RUP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RUS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SAD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SAG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SAH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SAI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SAM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SAN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SAS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SAT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SCN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SCO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SEL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SEM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SGA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SGN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SHN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SIN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SIO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SIT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SLA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SLO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SLV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SMA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SMI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SMJ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SMN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SMO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SMS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SNA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SND" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SNK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SOG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SOM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SON" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SOT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SPA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SRD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SRN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SRP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SRR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SSA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SSW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUX" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SWA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SWE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SYC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SYR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TAH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TAI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TAM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TAT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TEL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TEM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TET" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TGK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TGL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "THA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TIB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TIG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TIR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TIV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TKL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TLH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TLI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TMH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TOG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TON" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TPI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TSI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TSN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TSO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TUK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TUM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TUP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TUR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TUT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TVL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TWI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TYV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UDM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UGA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UIG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UKR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UMB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UND" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "URD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UZB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VAI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VIE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VOL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VOT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WAK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WAS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WEL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WLN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WOL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XHO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "YAO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "YAP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "YID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "YOR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "YPK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZAP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZBL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZGH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZHA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZND" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZUL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZUN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZXX" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZZA" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "LanguageCode", - "possibleTypes": null - }, - { - "description": "Description of a work's language.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "languageId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "languageCode", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageCode", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "languageRelation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageRelation", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "mainLanguage", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "work", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Language", - "possibleTypes": null - }, - { - "description": "Field to use when sorting languages list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LANGUAGE_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WORK_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LANGUAGE_CODE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LANGUAGE_RELATION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAIN_LANGUAGE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "LanguageField", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "types", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "queryType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "mutationType", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "subscriptionType", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "directives", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__Schema", - "possibleTypes": null - }, - { - "description": "RFC 3339 combined date and time in UTC time zone (e.g. \"1999-12-31T23:59:00Z\")", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Timestamp", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "relatorWorkId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relatedWorkId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "RelationType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewWorkRelation", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "subjectId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subjectType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SubjectType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subjectCode", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subjectOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchSubject", - "possibleTypes": null - }, - { - "description": "A periodical of publications about a particular subject.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "seriesId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "seriesType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SeriesType", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "seriesName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "issnPrint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "issnDigital", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "URL of the series' landing page", - "isDeprecated": false, - "name": "seriesUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "seriesDescription", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "URL of the series' call for proposals page", - "isDeprecated": false, - "name": "seriesCfpUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "imprintId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "imprint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Imprint", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"ISSUE_ORDINAL\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrderBy", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get issues linked to this series", - "isDeprecated": false, - "name": "issues", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Series", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "imprintId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisherId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "imprintName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "imprintUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchImprint", - "possibleTypes": null - }, - { - "description": "Unit of measurement for physical Work weight (grams or ounces)", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "G" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OZ" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "WeightUnit", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "String", - "possibleTypes": null - }, - { - "description": "Field to use when sorting contributions list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CONTRIBUTION_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WORK_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CONTRIBUTOR_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CONTRIBUTION_TYPE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAIN_CONTRIBUTION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BIOGRAPHY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FIRST_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAST_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FULL_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CONTRIBUTION_ORDINAL" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "ContributionField", - "possibleTypes": null - }, - { - "description": "Field to use when sorting subjects list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUBJECT_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WORK_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUBJECT_TYPE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUBJECT_CODE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUBJECT_ORDINAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "SubjectField", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting seriess list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SeriesField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "SeriesOrderBy", - "possibleTypes": null - }, - { - "description": "A person who has been involved in the production of a written text.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contributorId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "firstName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "lastName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fullName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orcid", - "type": { - "kind": "SCALAR", - "name": "Orcid", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "website", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"CONTRIBUTION_TYPE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "ContributionOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "contributionTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ContributionType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get contributions linked to this contributor", - "isDeprecated": false, - "name": "contributions", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contribution", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Contributor", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "seriesId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SeriesType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "issnPrint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "issnDigital", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesDescription", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesCfpUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "imprintId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchSeries", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting work relations list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkRelationField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "WorkRelationOrderBy", - "possibleTypes": null - }, - { - "description": "A manifestation of a written text", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publicationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publicationType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicationType", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "isbn", - "type": { - "kind": "SCALAR", - "name": "Isbn", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "\"MM\"", - "description": "Unit of measurement in which to represent the width (mm, cm or in)", - "name": "units", - "type": { - "kind": "ENUM", - "name": "LengthUnit", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Width of the physical Publication (in mm, cm or in) (only applicable to non-Chapter Paperbacks and Hardbacks)", - "isDeprecated": false, - "name": "width", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "\"MM\"", - "description": "Unit of measurement in which to represent the height (mm, cm or in)", - "name": "units", - "type": { - "kind": "ENUM", - "name": "LengthUnit", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Height of the physical Publication (in mm, cm or in) (only applicable to non-Chapter Paperbacks and Hardbacks)", - "isDeprecated": false, - "name": "height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "\"MM\"", - "description": "Unit of measurement in which to represent the depth (mm, cm or in)", - "name": "units", - "type": { - "kind": "ENUM", - "name": "LengthUnit", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Depth of the physical Publication (in mm, cm or in) (only applicable to non-Chapter Paperbacks and Hardbacks)", - "isDeprecated": false, - "name": "depth", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "\"G\"", - "description": "Unit of measurement in which to represent the weight (grams or ounces)", - "name": "units", - "type": { - "kind": "ENUM", - "name": "WeightUnit", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Weight of the physical Publication (in g or oz) (only applicable to non-Chapter Paperbacks and Hardbacks)", - "isDeprecated": false, - "name": "weight", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"CURRENCY_CODE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "PriceOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific currencies to filter by", - "name": "currencyCodes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CurrencyCode", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get prices linked to this publication", - "isDeprecated": false, - "name": "prices", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Price", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"LOCATION_PLATFORM\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocationOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific platforms to filter by", - "name": "locationPlatforms", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LocationPlatform", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get locations linked to this publication", - "isDeprecated": false, - "name": "locations", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Location", - "ofType": null - } - } - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "work", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Publication", - "possibleTypes": null - }, - { - "description": "Uuid", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Uuid", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "contributionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "institutionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "affiliationOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "position", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewAffiliation", - "possibleTypes": null - }, - { - "description": "Field to use when sorting fundings list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INSTITUTION_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WORK_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FUNDING_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PROGRAM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PROJECT_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PROJECT_SHORTNAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GRANT_NUMBER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JURISDICTION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "FundingField", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "languageId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "languageCode", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageCode", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "languageRelation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageRelation", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "mainLanguage", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchLanguage", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "fundingId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "institutionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "projectName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "projectShortname", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "grantNumber", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "jurisdiction", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchFunding", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "workType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workStatus", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fullTitle", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subtitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "reference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "edition", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "imprintId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "doi", - "type": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "publicationDate", - "type": { - "kind": "SCALAR", - "name": "NaiveDate", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "place", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pageCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pageBreakdown", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "imageCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tableCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "audioCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "videoCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "license", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "copyrightHolder", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "landingPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lccn", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "oclc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortAbstract", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "longAbstract", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "generalNote", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bibliographyNote", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "toc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverCaption", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "firstPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lastPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pageInterval", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewWork", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewWork", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createWork", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewPublisher", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createPublisher", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publisher", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewImprint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createImprint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Imprint", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewContributor", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createContributor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contributor", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewContribution", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createContribution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contribution", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewPublication", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createPublication", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publication", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewSeries", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createSeries", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Series", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewIssue", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createIssue", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewLanguage", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createLanguage", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Language", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewInstitution", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createInstitution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Institution", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewFunding", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createFunding", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Funding", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewLocation", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createLocation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Location", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewPrice", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createPrice", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Price", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewSubject", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createSubject", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Subject", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewAffiliation", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createAffiliation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Affiliation", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewWorkRelation", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createWorkRelation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkRelation", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NewReference", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createReference", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchWork", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateWork", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchPublisher", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatePublisher", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publisher", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchImprint", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateImprint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Imprint", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchContributor", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateContributor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contributor", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchContribution", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateContribution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contribution", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchPublication", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatePublication", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publication", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchSeries", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateSeries", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Series", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchIssue", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateIssue", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchLanguage", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateLanguage", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Language", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchInstitution", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateInstitution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Institution", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchFunding", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateFunding", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Funding", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchLocation", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateLocation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Location", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchPrice", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatePrice", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Price", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchSubject", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateSubject", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Subject", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchAffiliation", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateAffiliation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Affiliation", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchWorkRelation", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateWorkRelation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkRelation", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "data", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatchReference", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updateReference", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteWork", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "publisherId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deletePublisher", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publisher", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "imprintId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteImprint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Imprint", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "contributorId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteContributor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contributor", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "contributionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteContribution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contribution", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "publicationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deletePublication", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publication", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "seriesId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteSeries", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Series", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "issueId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteIssue", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "languageId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteLanguage", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Language", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "institutionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteInstitution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Institution", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "fundingId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteFunding", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Funding", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "locationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteLocation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Location", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "priceId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deletePrice", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Price", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "subjectId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteSubject", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Subject", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "affiliationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteAffiliation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Affiliation", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "workRelationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteWorkRelation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkRelation", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "referenceId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deleteReference", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "MutationRoot", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting prices list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PriceField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PriceOrderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "contributionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributorId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributionType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ContributionType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "mainContribution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biography", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "firstName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lastName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fullName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributionOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchContribution", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "kind", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "false", - "description": null, - "name": "includeDeprecated", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fields", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null - } - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ofType", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputFields", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "interfaces", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "possibleTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - } - }, - { - "args": [ - { - "defaultValue": "false", - "description": null, - "name": "includeDeprecated", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "enumValues", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__Type", - "possibleTypes": null - }, - { - "description": "Order in which to sort query results (ascending or descending)", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DESC" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "Direction", - "possibleTypes": null - }, - { - "description": "ROR (Research Organization Registry) identifier. Expressed as `^https:\\/\\/ror\\.org\\/0[a-hjkmnp-z0-9]{6}\\d{2}$`", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Ror", - "possibleTypes": null - }, - { - "description": "An association between a person and an institution for a specific contribution.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "affiliationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contributionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "institutionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "affiliationOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "position", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "institution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Institution", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contribution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contribution", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Affiliation", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ORIGINAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TRANSLATED_FROM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TRANSLATED_INTO" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "LanguageRelation", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "publisherId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisherName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisherShortname", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisherUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchPublisher", - "possibleTypes": null - }, - { - "description": "Role describing the type of contribution to the work", - "enumValues": [ - { - "deprecationReason": null, - "description": "Author of the work", - "isDeprecated": false, - "name": "AUTHOR" - }, - { - "deprecationReason": null, - "description": "Editor of the work", - "isDeprecated": false, - "name": "EDITOR" - }, - { - "deprecationReason": null, - "description": "Translator of the work", - "isDeprecated": false, - "name": "TRANSLATOR" - }, - { - "deprecationReason": null, - "description": "Photographer when named as the primary creator of, eg, a book of photographs", - "isDeprecated": false, - "name": "PHOTOGRAPHER" - }, - { - "deprecationReason": null, - "description": "Artist when named as the creator of artwork which illustrates a work", - "isDeprecated": false, - "name": "ILLUSTRATOR" - }, - { - "deprecationReason": null, - "description": "Person responsible for editing any piece of music referenced in the work", - "isDeprecated": false, - "name": "MUSIC_EDITOR" - }, - { - "deprecationReason": null, - "description": "Author of foreword", - "isDeprecated": false, - "name": "FOREWORD_BY" - }, - { - "deprecationReason": null, - "description": "Author of introduction", - "isDeprecated": false, - "name": "INTRODUCTION_BY" - }, - { - "deprecationReason": null, - "description": "Author of afterword", - "isDeprecated": false, - "name": "AFTERWORD_BY" - }, - { - "deprecationReason": null, - "description": "Author of preface", - "isDeprecated": false, - "name": "PREFACE_BY" - }, - { - "deprecationReason": null, - "description": "Writer of computer programs ancillary to the work", - "isDeprecated": false, - "name": "SOFTWARE_BY" - }, - { - "deprecationReason": null, - "description": "Person responsible for performing research on which the work is based", - "isDeprecated": false, - "name": "RESEARCH_BY" - }, - { - "deprecationReason": null, - "description": "Author of additional contributions to the work", - "isDeprecated": false, - "name": "CONTRIBUTIONS_BY" - }, - { - "deprecationReason": null, - "description": "Compiler of index", - "isDeprecated": false, - "name": "INDEXER" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "ContributionType", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting languages list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "LanguageOrderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BIC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BISAC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "THEMA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LCC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CUSTOM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KEYWORD" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "SubjectType", - "possibleTypes": null - }, - { - "description": "Field to use when sorting series list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SERIES_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SERIES_TYPE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SERIES_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISSN_PRINT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISSN_DIGITAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SERIES_URL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SERIES_DESCRIPTION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SERIES_CFP_URL" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "SeriesField", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "publisherName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisherShortname", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisherUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewPublisher", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "referenceId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "referenceOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "doi", - "type": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "unstructuredCitation", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "issn", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "isbn", - "type": { - "kind": "SCALAR", - "name": "Isbn", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "journalTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "articleTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "volumeTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "edition", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "author", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "volume", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "firstPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "componentNumber", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "standardDesignator", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "standardsBodyName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "standardsBodyAcronym", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "publicationDate", - "type": { - "kind": "SCALAR", - "name": "NaiveDate", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "retrievalDate", - "type": { - "kind": "SCALAR", - "name": "NaiveDate", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchReference", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting issues list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IssueField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "IssueOrderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on full_title, doi, reference, short_abstract, long_abstract, and landing_page", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"FULL_TITLE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "workTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkType", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "(deprecated) A specific status to filter by", - "name": "workStatus", - "type": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific statuses to filter by", - "name": "workStatuses", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "Only show results updated either before (less than) or after (greater than) the specified timestamp", - "name": "updatedAtWithRelations", - "type": { - "kind": "INPUT_OBJECT", - "name": "TimeExpression", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Query the full list of works", - "isDeprecated": false, - "name": "works", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single work using its id", - "isDeprecated": false, - "name": "work", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "doi", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single work using its DOI", - "isDeprecated": false, - "name": "workByDoi", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on full_title, doi, reference, short_abstract, long_abstract, and landing_page", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "workTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkType", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "(deprecated) A specific status to filter by", - "name": "workStatus", - "type": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific statuses to filter by", - "name": "workStatuses", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "Only show results updated either before (less than) or after (greater than) the specified timestamp", - "name": "updatedAtWithRelations", - "type": { - "kind": "INPUT_OBJECT", - "name": "TimeExpression", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get the total number of works", - "isDeprecated": false, - "name": "workCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on full_title, doi, reference, short_abstract, long_abstract, and landing_page", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"FULL_TITLE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "(deprecated) A specific status to filter by", - "name": "workStatus", - "type": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific statuses to filter by", - "name": "workStatuses", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "Only show results updated either before (less than) or after (greater than) the specified timestamp", - "name": "updatedAtWithRelations", - "type": { - "kind": "INPUT_OBJECT", - "name": "TimeExpression", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Query the full list of books (a subset of the full list of works)", - "isDeprecated": false, - "name": "books", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "doi", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single book using its DOI", - "isDeprecated": false, - "name": "bookByDoi", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on full_title, doi, reference, short_abstract, long_abstract, and landing_page", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "(deprecated) A specific status to filter by", - "name": "workStatus", - "type": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific statuses to filter by", - "name": "workStatuses", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "Only show results updated either before (less than) or after (greater than) the specified timestamp", - "name": "updatedAtWithRelations", - "type": { - "kind": "INPUT_OBJECT", - "name": "TimeExpression", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get the total number of books (a subset of the total number of works)", - "isDeprecated": false, - "name": "bookCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on full_title, doi, reference, short_abstract, long_abstract, and landing_page", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"FULL_TITLE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "(deprecated) A specific status to filter by", - "name": "workStatus", - "type": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific statuses to filter by", - "name": "workStatuses", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "Only show results updated either before (less than) or after (greater than) the specified timestamp", - "name": "updatedAtWithRelations", - "type": { - "kind": "INPUT_OBJECT", - "name": "TimeExpression", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Query the full list of chapters (a subset of the full list of works)", - "isDeprecated": false, - "name": "chapters", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "doi", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single chapter using its DOI", - "isDeprecated": false, - "name": "chapterByDoi", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on full_title, doi, reference, short_abstract, long_abstract, and landing_page", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "(deprecated) A specific status to filter by", - "name": "workStatus", - "type": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific statuses to filter by", - "name": "workStatuses", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "Only show results updated either before (less than) or after (greater than) the specified timestamp", - "name": "updatedAtWithRelations", - "type": { - "kind": "INPUT_OBJECT", - "name": "TimeExpression", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get the total number of chapters (a subset of the total number of works)", - "isDeprecated": false, - "name": "chapterCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on isbn", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"PUBLICATION_TYPE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "PublicationOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "publicationTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicationType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of publications", - "isDeprecated": false, - "name": "publications", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publication", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "publicationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single publication using its id", - "isDeprecated": false, - "name": "publication", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publication", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on isbn", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "publicationTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicationType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get the total number of publications", - "isDeprecated": false, - "name": "publicationCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on publisher_name and publisher_shortname", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"PUBLISHER_NAME\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "PublisherOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of publishers", - "isDeprecated": false, - "name": "publishers", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publisher", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "publisherId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single publisher using its id", - "isDeprecated": false, - "name": "publisher", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publisher", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on publisher_name and publisher_shortname", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get the total number of publishers", - "isDeprecated": false, - "name": "publisherCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on imprint_name and imprint_url", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"IMPRINT_NAME\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "ImprintOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of imprints", - "isDeprecated": false, - "name": "imprints", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Imprint", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "imprintId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single imprint using its id", - "isDeprecated": false, - "name": "imprint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Imprint", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on imprint_name and imprint_url", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get the total number of imprints", - "isDeprecated": false, - "name": "imprintCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on full_name, last_name and orcid", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"FULL_NAME\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "ContributorOrderBy", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Query the full list of contributors", - "isDeprecated": false, - "name": "contributors", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contributor", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "contributorId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single contributor using its id", - "isDeprecated": false, - "name": "contributor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contributor", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on full_name, last_name and orcid", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get the total number of contributors", - "isDeprecated": false, - "name": "contributorCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"CONTRIBUTION_TYPE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "ContributionOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "contributionTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ContributionType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of contributions", - "isDeprecated": false, - "name": "contributions", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contribution", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "contributionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single contribution using its id", - "isDeprecated": false, - "name": "contribution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contribution", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "contributionTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ContributionType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get the total number of contributions", - "isDeprecated": false, - "name": "contributionCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on series_name, issn_print, issn_digital, series_url and series_description", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"SERIES_NAME\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "SeriesOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "seriesTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SeriesType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of series", - "isDeprecated": false, - "name": "serieses", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Series", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "seriesId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single series using its id", - "isDeprecated": false, - "name": "series", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Series", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on series_name, issn_print, issn_digital, series_url and series_description", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "seriesTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SeriesType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get the total number of series", - "isDeprecated": false, - "name": "seriesCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"ISSUE_ORDINAL\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of issues", - "isDeprecated": false, - "name": "issues", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "issueId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single issue using its id", - "isDeprecated": false, - "name": "issue", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Get the total number of issues", - "isDeprecated": false, - "name": "issueCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"LANGUAGE_CODE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "LanguageOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": "[]", - "description": "Specific languages to filter by", - "name": "languageCodes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageCode", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "(deprecated) A specific relation to filter by", - "name": "languageRelation", - "type": { - "kind": "ENUM", - "name": "LanguageRelation", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific relations to filter by", - "name": "languageRelations", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageRelation", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of languages", - "isDeprecated": false, - "name": "languages", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Language", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "languageId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single language using its id", - "isDeprecated": false, - "name": "language", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Language", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "[]", - "description": "Specific languages to filter by", - "name": "languageCodes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageCode", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "(deprecated) A specific relation to filter by", - "name": "languageRelation", - "type": { - "kind": "ENUM", - "name": "LanguageRelation", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific relations to filter by", - "name": "languageRelations", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageRelation", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get the total number of languages associated to works", - "isDeprecated": false, - "name": "languageCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"LOCATION_PLATFORM\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocationOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "locationPlatforms", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LocationPlatform", - "ofType": null - } - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of locations", - "isDeprecated": false, - "name": "locations", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Location", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "locationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single location using its id", - "isDeprecated": false, - "name": "location", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Location", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "locationPlatforms", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LocationPlatform", - "ofType": null - } - } - } - } - } - ], - "deprecationReason": null, - "description": "Get the total number of locations associated to works", - "isDeprecated": false, - "name": "locationCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"CURRENCY_CODE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "PriceOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": "[]", - "description": "Specific currencies to filter by", - "name": "currencyCodes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CurrencyCode", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of prices", - "isDeprecated": false, - "name": "prices", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Price", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "priceId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single price using its id", - "isDeprecated": false, - "name": "price", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Price", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "[]", - "description": "Specific currencies to filter by", - "name": "currencyCodes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CurrencyCode", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get the total number of prices associated to works", - "isDeprecated": false, - "name": "priceCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on subject_code", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"SUBJECT_TYPE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "SubjectOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "subjectTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SubjectType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of subjects", - "isDeprecated": false, - "name": "subjects", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Subject", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "subjectId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single subject using its id", - "isDeprecated": false, - "name": "subject", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Subject", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on subject_code", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "subjectTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SubjectType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get the total number of subjects associated to works", - "isDeprecated": false, - "name": "subjectCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on institution_name, ror and institution_doi", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"INSTITUTION_NAME\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "InstitutionOrderBy", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Query the full list of institutions", - "isDeprecated": false, - "name": "institutions", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Institution", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "institutionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single institution using its id", - "isDeprecated": false, - "name": "institution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Institution", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on institution_name, ror and institution_doi", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get the total number of institutions", - "isDeprecated": false, - "name": "institutionCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"PROGRAM\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of fundings", - "isDeprecated": false, - "name": "fundings", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Funding", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "fundingId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single funding using its id", - "isDeprecated": false, - "name": "funding", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Funding", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Get the total number of funding instances associated to works", - "isDeprecated": false, - "name": "fundingCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"AFFILIATION_ORDINAL\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "AffiliationOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of affiliations", - "isDeprecated": false, - "name": "affiliations", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Affiliation", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "affiliationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single affiliation using its id", - "isDeprecated": false, - "name": "affiliation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Affiliation", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Get the total number of affiliations", - "isDeprecated": false, - "name": "affiliationCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"REFERENCE_ORDINAL\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "If set, only shows results connected to publishers with these IDs", - "name": "publishers", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Query the full list of references", - "isDeprecated": false, - "name": "references", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "referenceId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Query a single reference using its id", - "isDeprecated": false, - "name": "reference", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Get the total number of references", - "isDeprecated": false, - "name": "referenceCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "QueryRoot", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Boolean", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "REPLACES" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HAS_TRANSLATION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HAS_PART" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HAS_CHILD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IS_REPLACED_BY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IS_TRANSLATION_OF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IS_PART_OF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IS_CHILD_OF" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "RelationType", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "institutionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "projectName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "projectShortname", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "grantNumber", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "jurisdiction", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewFunding", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting contributors list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ContributorField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "ContributorOrderBy", - "possibleTypes": null - }, - { - "description": "A written text that can be published", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkType", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workStatus", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Concatenation of title and subtitle with punctuation mark", - "isDeprecated": false, - "name": "fullTitle", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Main title of the work (excluding subtitle)", - "isDeprecated": false, - "name": "title", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Secondary title of the work (excluding main title)", - "isDeprecated": false, - "name": "subtitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Internal reference code", - "isDeprecated": false, - "name": "reference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Edition number of the work (not applicable to chapters)", - "isDeprecated": false, - "name": "edition", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "imprintId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Digital Object Identifier of the work as full URL. It must use the HTTPS scheme and the doi.org domain (e.g. https://doi.org/10.11647/obp.0001)", - "isDeprecated": false, - "name": "doi", - "type": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publicationDate", - "type": { - "kind": "SCALAR", - "name": "NaiveDate", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "place", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "pageCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "pageBreakdown", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "imageCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tableCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "audioCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "videoCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "license", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "copyrightHolder", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "landingPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Library of Congress Control Number of the work (not applicable to chapters)", - "isDeprecated": false, - "name": "lccn", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "OCLC (WorldCat) Control Number of the work (not applicable to chapters)", - "isDeprecated": false, - "name": "oclc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "shortAbstract", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "longAbstract", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "A general-purpose field used to include information that does not have a specific designated field", - "isDeprecated": false, - "name": "generalNote", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Indicates that the work contains a bibliography or other similar information", - "isDeprecated": false, - "name": "bibliographyNote", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Table of contents of the work (not applicable to chapters)", - "isDeprecated": false, - "name": "toc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "coverUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "coverCaption", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Date and time at which the work record was created", - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Date and time at which the work record was last updated", - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Page number on which the work begins (only applicable to chapters)", - "isDeprecated": false, - "name": "firstPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Page number on which the work ends (only applicable to chapters)", - "isDeprecated": false, - "name": "lastPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Concatenation of first page and last page with dash (only applicable to chapters)", - "isDeprecated": false, - "name": "pageInterval", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Date and time at which the work record or any of its linked records was last updated", - "isDeprecated": false, - "name": "updatedAtWithRelations", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "imprint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Imprint", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"CONTRIBUTION_TYPE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "ContributionOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "contributionTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ContributionType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get contributions linked to this work", - "isDeprecated": false, - "name": "contributions", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contribution", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"LANGUAGE_CODE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "LanguageOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific languages to filter by", - "name": "languageCodes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageCode", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "(deprecated) A specific relation to filter by", - "name": "languageRelation", - "type": { - "kind": "ENUM", - "name": "LanguageRelation", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific relations to filter by", - "name": "languageRelations", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageRelation", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get languages linked to this work", - "isDeprecated": false, - "name": "languages", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Language", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on isbn", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"PUBLICATION_TYPE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "PublicationOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "publicationTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicationType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get publications linked to this work", - "isDeprecated": false, - "name": "publications", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publication", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on subject_code", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"SUBJECT_TYPE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "SubjectOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "subjectTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SubjectType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get subjects linked to this work", - "isDeprecated": false, - "name": "subjects", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Subject", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"PROGRAM\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingOrderBy", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get fundings linked to this work", - "isDeprecated": false, - "name": "fundings", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Funding", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"ISSUE_ORDINAL\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrderBy", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get issues linked to this work", - "isDeprecated": false, - "name": "issues", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"RELATION_TYPE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkRelationOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "relationTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "RelationType", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, - "description": "Get other works related to this work", - "isDeprecated": false, - "name": "relations", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorkRelation", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on doi, unstructured_citation, issn, isbn, journal_title, article_title, series_title, volume_title, author, standard_designator, standards_body_name, and standards_body_acronym", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"REFERENCE_ORDINAL\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceOrderBy", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get references cited by this work", - "isDeprecated": false, - "name": "references", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Work", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "publicationType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicationType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "isbn", - "type": { - "kind": "SCALAR", - "name": "Isbn", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "widthMm", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "widthIn", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "heightMm", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "heightIn", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "depthMm", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "depthIn", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "weightG", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "weightOz", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewPublication", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "institutionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "institutionName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "institutionDoi", - "type": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ror", - "type": { - "kind": "SCALAR", - "name": "Ror", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "countryCode", - "type": { - "kind": "ENUM", - "name": "CountryCode", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchInstitution", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting locations list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LocationField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "LocationOrderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ADP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AED" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AFA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AFN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ALK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ALL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AMD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ANG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AOA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AOK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AON" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AOR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ATS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AUD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AWG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AYM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AZM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AZN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BAD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BAM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BBD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BDT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BEC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BEF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BEL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BGJ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BGK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BGL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BGN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BHD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BIF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BMD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BND" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BOB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BOP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BOV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BRB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BRC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BRE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BRL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BRN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BRR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BSD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BTN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BUK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BWP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BYB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BYN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BYR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BZD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CAD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CDF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CLF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CLP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CNY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CRC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CSD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CSJ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CSK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CUC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CUP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CVE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CYP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CZK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DDM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DEM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DJF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DKK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DOP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DZD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ECS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ECV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EEK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EGP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ERN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ESA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ESB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ESP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ETB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EUR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FIM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FJD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FKP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FRF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GBP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GEK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GEL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GHC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GHP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GHS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GIP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GMD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GNE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GNF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GNS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GQE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GRD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GTQ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GWE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GWP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GYD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HKD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HNL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HRD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HRK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HTG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HUF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IDR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IEP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ILP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ILR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ILS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IQD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IRR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISJ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ITL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JMD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JOD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JPY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KES" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KGS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KHR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KMF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KPW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KRW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KWD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KYD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KZT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAJ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LBP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LKR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LRD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LSL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LSM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LTL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LTT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LUC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LUF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LUL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LVL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LVR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LYD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MDL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MGA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MGF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MKD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MLF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MMK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MNT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MOP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MRO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MRU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MTL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MTP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MUR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MVQ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MVR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MWK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MXN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MXP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MXV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MYR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MZE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MZM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MZN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NAD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NGN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NIC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NIO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NLG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NOK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NPR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NZD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OMR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PEH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PEI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PES" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PGK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PHP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PKR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PLN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PLZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PTE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PYG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "QAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RHD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ROK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ROL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RON" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RSD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RUB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RUR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RWF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SBD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SCR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SDD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SDG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SDP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SEK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SGD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SHP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SIT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SKK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SLL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SOS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SRD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SRG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SSP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "STD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "STN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SVC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SYP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SZL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "THB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TJR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TJS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TMM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TMT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TND" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TOP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TPE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TRL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TRY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TTD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TWD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TZS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UAH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UAK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UGS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UGW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UGX" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "USD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "USN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "USS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UYI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UYN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UYP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UYU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UYW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UZS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VEB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VEF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VES" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VNC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VND" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VUV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XAF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XAG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XAU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XBA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XBB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XBC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XBD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XCD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XDR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XEU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XFO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XFU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XOF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XPD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XPF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XPT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XRE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XSU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XTS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XUA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XXX" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "YDD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "YER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "YUD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "YUM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "YUN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZMK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZMW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZRN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZRZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZWC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZWD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZWL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZWN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZWR" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "CurrencyCode", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting publications list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicationField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PublicationOrderBy", - "possibleTypes": null - }, - { - "description": "Field to use when sorting publications list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PUBLICATION_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PUBLICATION_TYPE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WORK_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISBN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WIDTH_MM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WIDTH_IN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HEIGHT_MM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HEIGHT_IN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DEPTH_MM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DEPTH_IN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WEIGHT_G" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WEIGHT_OZ" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "PublicationField", - "possibleTypes": null - }, - { - "description": "A relationship between two works, e.g. a book and one of its chapters, or an original and its translation.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workRelationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relatorWorkId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relatedWorkId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relationType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "RelationType", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relationOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relatedWork", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "WorkRelation", - "possibleTypes": null - }, - { - "description": "A grant awarded to the publication of a work by an institution.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fundingId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "institutionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "projectName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "projectShortname", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "grantNumber", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "jurisdiction", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "work", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "institution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Institution", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Funding", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "languageCode", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageCode", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "languageRelation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LanguageRelation", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "mainLanguage", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewLanguage", - "possibleTypes": null - }, - { - "description": "Field to use when sorting works list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WORK_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WORK_TYPE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WORK_STATUS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FULL_TITLE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TITLE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUBTITLE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "REFERENCE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EDITION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DOI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PUBLICATION_DATE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PLACE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAGE_COUNT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAGE_BREAKDOWN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IMAGE_COUNT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TABLE_COUNT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AUDIO_COUNT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VIDEO_COUNT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LICENSE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COPYRIGHT_HOLDER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LANDING_PAGE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LCCN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OCLC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SHORT_ABSTRACT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LONG_ABSTRACT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GENERAL_NOTE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BIBLIOGRAPHY_NOTE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TOC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COVER_URL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COVER_CAPTION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FIRST_PAGE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAST_PAGE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAGE_INTERVAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT_WITH_RELATIONS" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "WorkField", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "institutionName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "institutionDoi", - "type": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ror", - "type": { - "kind": "SCALAR", - "name": "Ror", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "countryCode", - "type": { - "kind": "ENUM", - "name": "CountryCode", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewInstitution", - "possibleTypes": null - }, - { - "description": "Timestamp and choice out of greater than/less than to use when filtering by a time field (e.g. updated_at)", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "expression", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Expression", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "TimeExpression", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "publicationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "currencyCode", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CurrencyCode", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "unitPrice", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewPrice", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "workRelationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relatorWorkId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relatedWorkId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "RelationType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchWorkRelation", - "possibleTypes": null - }, - { - "description": "An organisation with which contributors may be affiliated or by which works may be funded.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "institutionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "institutionName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Digital Object Identifier of the organisation as full URL. It must use the HTTPS scheme and the doi.org domain (e.g. https://doi.org/10.13039/100014013)", - "isDeprecated": false, - "name": "institutionDoi", - "type": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "countryCode", - "type": { - "kind": "ENUM", - "name": "CountryCode", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Research Organisation Registry identifier of the organisation as full URL. It must use the HTTPS scheme and the ror.org domain (e.g. https://ror.org/051z6e826)", - "isDeprecated": false, - "name": "ror", - "type": { - "kind": "SCALAR", - "name": "Ror", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"PROGRAM\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "FundingOrderBy", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get fundings linked to this institution", - "isDeprecated": false, - "name": "fundings", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Funding", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"AFFILIATION_ORDINAL\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "AffiliationOrderBy", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get affiliations linked to this institution", - "isDeprecated": false, - "name": "affiliations", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Affiliation", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Institution", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Float", - "possibleTypes": null - }, - { - "description": "The amount of money, in any currency, that a publication costs.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "priceId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publicationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "currencyCode", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CurrencyCode", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "unitPrice", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publication", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publication", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Price", - "possibleTypes": null - }, - { - "description": "Field to use when sorting contributors list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CONTRIBUTOR_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FIRST_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAST_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FULL_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ORCID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WEBSITE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "ContributorField", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BOOK_CHAPTER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MONOGRAPH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EDITED_BOOK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TEXTBOOK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JOURNAL_ISSUE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BOOK_SET" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "WorkType", - "possibleTypes": null - }, - { - "description": "Unit of measurement for physical Work dimensions (mm, cm or in)", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IN" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "LengthUnit", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "contributorId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "firstName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lastName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fullName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orcid", - "type": { - "kind": "SCALAR", - "name": "Orcid", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "website", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchContributor", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subjectType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SubjectType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subjectCode", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subjectOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewSubject", - "possibleTypes": null - }, - { - "description": "Field to use when sorting imprints list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IMPRINT_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IMPRINT_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IMPRINT_URL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "ImprintField", - "possibleTypes": null - }, - { - "description": "Field to use when sorting references list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "REFERENCE_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WORK_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "REFERENCE_ORDINAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DOI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UNSTRUCTURED_CITATION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISSN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISBN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JOURNAL_TITLE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARTICLE_TITLE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SERIES_TITLE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VOLUME_TITLE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EDITION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AUTHOR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VOLUME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISSUE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FIRST_PAGE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COMPONENT_NUMBER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "STANDARD_DESIGNATOR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "STANDARDS_BODY_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "STANDARDS_BODY_ACRONYM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "URL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PUBLICATION_DATE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RETRIEVAL_DATE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "ReferenceField", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JOURNAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BOOK_SERIES" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "SeriesType", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "args", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "isDeprecated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deprecationReason", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__Field", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UNSPECIFIED" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CANCELLED" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FORTHCOMING" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "POSTPONED_INDEFINITELY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ACTIVE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NO_LONGER_OUR_PRODUCT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OUT_OF_STOCK_INDEFINITELY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OUT_OF_PRINT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INACTIVE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UNKNOWN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "REMAINDERED" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WITHDRAWN_FROM_SALE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RECALLED" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "WorkStatus", - "possibleTypes": null - }, - { - "description": "Digital Object Identifier. Expressed as `^https:\\/\\/doi\\.org\\/10\\.\\d{4,9}\\/[-._\\;\\(\\)\\[\\]\\/:a-zA-Z0-9]+$`", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Doi", - "possibleTypes": null - }, - { - "description": "Field to use when sorting issues list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISSUE_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SERIES_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WORK_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISSUE_ORDINAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "IssueField", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting institutions list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "InstitutionField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "InstitutionOrderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "publicationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publicationType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicationType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "isbn", - "type": { - "kind": "SCALAR", - "name": "Isbn", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "widthMm", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "widthIn", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "heightMm", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "heightIn", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "depthMm", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "depthIn", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "weightG", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "weightOz", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchPublication", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "issueId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "issueOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchIssue", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting contributions list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ContributionField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "ContributionOrderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PROJECT_MUSE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OAPEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DOAB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JSTOR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EBSCO_HOST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OCLC_KB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PROQUEST_KB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PROQUEST_EXLIBRIS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EBSCO_KB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JISC_KB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GOOGLE_BOOKS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INTERNET_ARCHIVE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SCIENCE_OPEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SCIELO_BOOKS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OTHER" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "LocationPlatform", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting subjects list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SubjectField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "SubjectOrderBy", - "possibleTypes": null - }, - { - "description": "A person's involvement in the production of a written text.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contributionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contributorId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contributionType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ContributionType", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "mainContribution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "biography", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "firstName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "lastName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fullName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contributionOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "work", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contributor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Contributor", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "{field: \"AFFILIATION_ORDINAL\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "AffiliationOrderBy", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get affiliations linked to this contribution", - "isDeprecated": false, - "name": "affiliations", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Affiliation", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Contribution", - "possibleTypes": null - }, - { - "description": "A significant discipline or term related to a work.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "subjectId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "subjectType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SubjectType", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "subjectCode", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "subjectOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "work", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Subject", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "seriesId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "issueOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewIssue", - "possibleTypes": null - }, - { - "description": "Field to use when sorting prices list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PRICE_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PUBLICATION_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CURRENCY_CODE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UNIT_PRICE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "PriceField", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting fundings list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FundingField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "FundingOrderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "firstName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lastName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fullName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orcid", - "type": { - "kind": "SCALAR", - "name": "Orcid", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "website", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewContributor", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "publisherId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "imprintName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "imprintUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewImprint", - "possibleTypes": null - }, - { - "description": "Expression to use when filtering by numeric value (greater than or less than)", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GREATER_THAN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LESS_THAN" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "Expression", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "affiliationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "institutionId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "affiliationOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "position", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchAffiliation", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "locations", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": null - } - } - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "args", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - } - }, - { - "args": [], - "deprecationReason": "Use the locations array instead", - "description": null, - "isDeprecated": true, - "name": "onOperation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": "Use the locations array instead", - "description": null, - "isDeprecated": true, - "name": "onFragment", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": "Use the locations array instead", - "description": null, - "isDeprecated": true, - "name": "onField", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__Directive", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workStatus", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fullTitle", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subtitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "reference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "edition", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "imprintId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "doi", - "type": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "publicationDate", - "type": { - "kind": "SCALAR", - "name": "NaiveDate", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "place", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pageCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pageBreakdown", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "imageCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tableCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "audioCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "videoCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "license", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "copyrightHolder", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "landingPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lccn", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "oclc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortAbstract", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "longAbstract", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "generalNote", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bibliographyNote", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "toc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverCaption", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "firstPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lastPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pageInterval", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchWork", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "priceId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publicationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "currencyCode", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CurrencyCode", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "unitPrice", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchPrice", - "possibleTypes": null - }, - { - "description": "NaiveDate", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "NaiveDate", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "seriesType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SeriesType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "issnPrint", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "issnDigital", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesDescription", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "seriesCfpUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "imprintId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewSeries", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting affiliations list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AffiliationField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "AffiliationOrderBy", - "possibleTypes": null - }, - { - "description": "A work published as a number in a periodical.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "issueId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "seriesId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "issueOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "series", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Series", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "work", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Issue", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "publicationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "landingPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fullTextUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "locationPlatform", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LocationPlatform", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "canonical", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewLocation", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Int", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributorId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributionType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ContributionType", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "mainContribution", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biography", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "firstName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lastName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fullName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributionOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NewContribution", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "locationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publicationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "landingPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fullTextUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "locationPlatform", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LocationPlatform", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "canonical", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PatchLocation", - "possibleTypes": null - }, - { - "description": "13-digit International Standard Book Number, with its parts separated by hyphens", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Isbn", - "possibleTypes": null - }, - { - "description": "A location, such as a web shop or distribution platform, where a publication can be acquired or viewed.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "locationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publicationId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "landingPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fullTextUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "locationPlatform", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "LocationPlatform", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "canonical", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publication", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publication", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Location", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting imprints list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ImprintField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "ImprintOrderBy", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting references list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReferenceField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "ReferenceOrderBy", - "possibleTypes": null - }, - { - "description": "Field to use when sorting publishers list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PUBLISHER_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PUBLISHER_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PUBLISHER_SHORTNAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PUBLISHER_URL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "PublisherField", - "possibleTypes": null - }, - { - "description": "The brand under which a publisher issues works.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "imprintId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publisherId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "imprintName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "imprintUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publisher", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Publisher", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "100", - "description": "The number of items to return", - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "0", - "description": "The number of items to skip", - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "\"\"", - "description": "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on full_title, doi, reference, short_abstract, long_abstract, and landing_page", - "name": "filter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "{field: \"FULL_TITLE\", direction: \"ASC\"}", - "description": "The order in which to sort the results", - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkOrderBy", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific types to filter by", - "name": "workTypes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkType", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "(deprecated) A specific status to filter by", - "name": "workStatus", - "type": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - }, - { - "defaultValue": "[]", - "description": "Specific statuses to filter by", - "name": "workStatuses", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkStatus", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "Only show results updated either before (less than) or after (greater than) the specified timestamp", - "name": "updatedAtWithRelations", - "type": { - "kind": "INPUT_OBJECT", - "name": "TimeExpression", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Get works linked to this imprint", - "isDeprecated": false, - "name": "works", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Imprint", - "possibleTypes": null - }, - { - "description": "A citation to a written text. References must always include the DOI of the cited work, the unstructured citation, or both.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "UUID of the reference.", - "isDeprecated": false, - "name": "referenceId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "UUID of the citing work.", - "isDeprecated": false, - "name": "workId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Uuid", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Number used to order references within a work's bibliography.", - "isDeprecated": false, - "name": "referenceOrdinal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Digital Object Identifier of the cited work as full URL.", - "isDeprecated": false, - "name": "doi", - "type": { - "kind": "SCALAR", - "name": "Doi", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Full reference text. When the DOI of the cited work is not known this field is required, and may be used in conjunction with other structured data to help identify the cited work.", - "isDeprecated": false, - "name": "unstructuredCitation", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "ISSN of a series.", - "isDeprecated": false, - "name": "issn", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Book ISBN, when the cited work is a book or a chapter.", - "isDeprecated": false, - "name": "isbn", - "type": { - "kind": "SCALAR", - "name": "Isbn", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Title of a journal, when the cited work is an article.", - "isDeprecated": false, - "name": "journalTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Journal article, conference paper, or book chapter title.", - "isDeprecated": false, - "name": "articleTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Title of a book or conference series.", - "isDeprecated": false, - "name": "seriesTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Title of a book or conference proceeding.", - "isDeprecated": false, - "name": "volumeTitle", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Book edition number.", - "isDeprecated": false, - "name": "edition", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "First author of the cited work.", - "isDeprecated": false, - "name": "author", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Volume number of a journal or book set.", - "isDeprecated": false, - "name": "volume", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Journal issue, when the cited work is an article.", - "isDeprecated": false, - "name": "issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "First page of the cited page range.", - "isDeprecated": false, - "name": "firstPage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The chapter, section or part number, when the cited work is a component of a book.", - "isDeprecated": false, - "name": "componentNumber", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Standard identifier (e.g. \"14064-1\"), when the cited work is a standard.", - "isDeprecated": false, - "name": "standardDesignator", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Full name of the standards organisation (e.g. \"International Organization for Standardization\"), when the cited work is a standard.", - "isDeprecated": false, - "name": "standardsBodyName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Acronym of the standards organisation (e.g. \"ISO\"), when the cited work is a standard.", - "isDeprecated": false, - "name": "standardsBodyAcronym", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "URL of the cited work.", - "isDeprecated": false, - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Publication date of the cited work. Day and month should be set to \"01\" when only the publication year is known.", - "isDeprecated": false, - "name": "publicationDate", - "type": { - "kind": "SCALAR", - "name": "NaiveDate", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Date the cited work was accessed, when citing a website or online article.", - "isDeprecated": false, - "name": "retrievalDate", - "type": { - "kind": "SCALAR", - "name": "NaiveDate", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Timestamp of the creation of this record within Thoth.", - "isDeprecated": false, - "name": "createdAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Timestamp of the last update to this record within Thoth.", - "isDeprecated": false, - "name": "updatedAt", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Timestamp", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The citing work.", - "isDeprecated": false, - "name": "work", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Work", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Reference", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "defaultValue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__InputValue", - "possibleTypes": null - }, - { - "description": "Field to use when sorting affiliations list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AFFILIATION_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CONTRIBUTION_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INSTITUTION_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AFFILIATION_ORDINAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "POSITION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "AffiliationField", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AFG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ALA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ALB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DZA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ASM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AND" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AGO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AIA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ATA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ATG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ABW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AUS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AUT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AZE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BHS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BHR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BGD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BRB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BLR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BEL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BLZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BMU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BTN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BOL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BES" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BIH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BWA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BVT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BRA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IOT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BRN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BGR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BFA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BDI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CPV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KHM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CMR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CAN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CYM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CAF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TCD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CXR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CCK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CRI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CIV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HRV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CUB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CUW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CYP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CZE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DNK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DJI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DMA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DOM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ECU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EGY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SLV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GNQ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ERI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SWZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ETH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FLK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FRO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FJI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FIN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FRA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GUF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PYF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ATF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GAB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GMB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GEO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DEU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GHA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GIB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GRC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GRL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GRD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GLP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GUM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GTM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GGY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GIN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GNB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GUY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HTI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HMD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HND" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HKG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HUN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IND" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IDN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IRN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IRQ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IRL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "IMN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ISR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ITA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JAM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JPN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JEY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "JOR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KAZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KIR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KWT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KGZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LAO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LVA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LBN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LSO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LBR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LBY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LIE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LTU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LUX" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MDG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MWI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MYS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MDV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MLI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MLT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MHL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MTQ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MRT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MUS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MYT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MEX" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FSM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MDA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MCO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MNG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MNE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MSR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MOZ" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MMR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NAM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NRU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NPL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NLD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NCL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NZL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NIC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NGA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NIU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NFK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PRK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MKD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MNP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "NOR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "OMN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PLW" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PSE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PNG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PRY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PER" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PHL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PCN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "POL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PRT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PRI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "QAT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COG" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "REU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ROU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RUS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RWA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BLM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SHN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KNA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LCA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MAF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SPM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VCT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WSM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SMR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "STP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SAU" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SRB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SYC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SLE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SGP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SXM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SVK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SVN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SLB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SOM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZAF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SGS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "KOR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SSD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ESP" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LKA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SDN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SJM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SWE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CHE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SYR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TWN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TJK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TZA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "THA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TLS" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TGO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TKL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TON" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TTO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TUN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TUR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TKM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TCA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "TUV" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UGA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UKR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ARE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "GBR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UMI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "USA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "URY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UZB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VUT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VAT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VEN" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VNM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VGB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "VIR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "WLF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ESH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "YEM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZMB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ZWE" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "CountryCode", - "possibleTypes": null - }, - { - "description": "Field to use when sorting locations list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LOCATION_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PUBLICATION_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LANDING_PAGE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FULL_TEXT_URL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "LOCATION_PLATFORM" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CANONICAL" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "LocationField", - "possibleTypes": null - }, - { - "description": "Field to use when sorting institutions list", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INSTITUTION_ID" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INSTITUTION_NAME" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INSTITUTION_DOI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ROR" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "COUNTRY_CODE" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "UPDATED_AT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "InstitutionField", - "possibleTypes": null - }, - { - "description": "GraphQL type kind\n\nThe GraphQL specification defines a number of type kinds - the meta type of a type.", - "enumValues": [ - { - "deprecationReason": null, - "description": "## Scalar types\n\nScalar types appear as the leaf nodes of GraphQL queries. Strings, numbers, and booleans are the built in types, and while it's possible to define your own, it's relatively uncommon.", - "isDeprecated": false, - "name": "SCALAR" - }, - { - "deprecationReason": null, - "description": "## Object types\n\nThe most common type to be implemented by users. Objects have fields and can implement interfaces.", - "isDeprecated": false, - "name": "OBJECT" - }, - { - "deprecationReason": null, - "description": "## Interface types\n\nInterface types are used to represent overlapping fields between multiple types, and can be queried for their concrete type.", - "isDeprecated": false, - "name": "INTERFACE" - }, - { - "deprecationReason": null, - "description": "## Union types\n\nUnions are similar to interfaces but can not contain any fields on their own.", - "isDeprecated": false, - "name": "UNION" - }, - { - "deprecationReason": null, - "description": "## Enum types\n\nLike scalars, enum types appear as the leaf nodes of GraphQL queries.", - "isDeprecated": false, - "name": "ENUM" - }, - { - "deprecationReason": null, - "description": "## Input objects\n\nRepresents complex values provided in queries _into_ the system.", - "isDeprecated": false, - "name": "INPUT_OBJECT" - }, - { - "deprecationReason": null, - "description": "## List types\n\nRepresent lists of other types. This library provides implementations for vectors and slices, but other Rust types can be extended to serve as GraphQL lists.", - "isDeprecated": false, - "name": "LIST" - }, - { - "deprecationReason": null, - "description": "## Non-null types\n\nIn GraphQL, nullable types are the default. By putting a `!` after a type, it becomes non-nullable.", - "isDeprecated": false, - "name": "NON_NULL" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "__TypeKind", - "possibleTypes": null - }, - { - "description": "ORCID (Open Researcher and Contributor ID) identifier. Expressed as `^https:\\/\\/orcid\\.org\\/\\d{4}-\\d{4}-\\d{4}-\\d{3}[\\dX]$`", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Orcid", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PAPERBACK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HARDBACK" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PDF" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "HTML" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "XML" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "EPUB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MOBI" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "AZW3" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "DOCX" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FICTION_BOOK" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "PublicationType", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "isDeprecated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deprecationReason", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__EnumValue", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "QUERY" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "MUTATION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "SUBSCRIPTION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FIELD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FRAGMENT_DEFINITION" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "FRAGMENT_SPREAD" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "INLINE_FRAGMENT" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "__DirectiveLocation", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting publishers list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublisherField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "PublisherOrderBy", - "possibleTypes": null - }, - { - "description": "Field and order to use when sorting works list", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WorkField", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Direction", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "WorkOrderBy", - "possibleTypes": null - } - ] - } - } -} \ No newline at end of file diff --git a/thoth-client/build.rs b/thoth-client/build.rs new file mode 100644 index 00000000..7e315f8a --- /dev/null +++ b/thoth-client/build.rs @@ -0,0 +1,14 @@ +use std::fs; +use std::path::Path; +use thoth_api::graphql::model::create_schema; + +// Generate the GraphQL schema and store it in assets/schema.graphql +fn main() { + let schema = create_schema().as_schema_language(); + + let out_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap(); + let schema_path = Path::new(&out_dir).join("assets").join("schema.graphql"); + + fs::write(&schema_path, schema).expect("Unable to write schema file"); + println!("Generated schema file at: {:?}", &schema_path); +} diff --git a/thoth-client/src/queries.rs b/thoth-client/src/queries.rs index 6e19a68b..0e8f9510 100644 --- a/thoth-client/src/queries.rs +++ b/thoth-client/src/queries.rs @@ -13,7 +13,7 @@ use uuid::Uuid; #[derive(GraphQLQuery)] #[graphql( - schema_path = "assets/schema.json", + schema_path = "assets/schema.graphql", query_path = "assets/queries.graphql", response_derives = "Debug,Clone,Deserialize,Serialize,PartialEq", variables_derives = "Debug,PartialEq" @@ -40,7 +40,7 @@ impl fmt::Display for work_query::PublicationType { #[derive(GraphQLQuery)] #[graphql( - schema_path = "assets/schema.json", + schema_path = "assets/schema.graphql", query_path = "assets/queries.graphql", response_derives = "Debug,Clone,Deserialize,Serialize,PartialEq", variables_derives = "Debug,PartialEq" @@ -49,7 +49,7 @@ pub struct WorksQuery; #[derive(GraphQLQuery)] #[graphql( - schema_path = "assets/schema.json", + schema_path = "assets/schema.graphql", query_path = "assets/queries.graphql", response_derives = "Debug,Clone,Deserialize,Serialize,PartialEq", variables_derives = "Debug,PartialEq" diff --git a/thoth-errors/Cargo.toml b/thoth-errors/Cargo.toml index 2e6ca173..ba853d64 100644 --- a/thoth-errors/Cargo.toml +++ b/thoth-errors/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "thoth-errors" -version = "0.11.15" +version = "0.11.16" authors = ["Javier Arias ", "Ross Higman "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "Errors library for Thoth" repository = "https://github.com/thoth-pub/thoth" diff --git a/thoth-export-server/Cargo.toml b/thoth-export-server/Cargo.toml index c142c162..9ab24ca8 100644 --- a/thoth-export-server/Cargo.toml +++ b/thoth-export-server/Cargo.toml @@ -1,17 +1,17 @@ [package] name = "thoth-export-server" -version = "0.11.15" +version = "0.11.16" authors = ["Javier Arias ", "Ross Higman "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "Actix instance serving Thoth's metadata export endpoints" repository = "https://github.com/thoth-pub/thoth" readme = "README.md" [dependencies] -thoth-api = { version = "0.11.15", path = "../thoth-api" } -thoth-errors = { version = "0.11.15", path = "../thoth-errors" } -thoth-client = { version = "0.11.15", path = "../thoth-client" } +thoth-api = { version = "0.11.16", path = "../thoth-api" } +thoth-errors = { version = "0.11.16", path = "../thoth-errors" } +thoth-client = { version = "0.11.16", path = "../thoth-client" } actix-web = "4.4.1" actix-cors = "0.7.0" cc_license = "0.1.0"