Last active
October 3, 2017 17:37
-
-
Save wwe-johndpope/eff04d5297024f8570174a52a25e7c4f to your computer and use it in GitHub Desktop.
generate swift files.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone https://github.com/Shopify/graphql_swift_gen.git | |
| cd graphql_swift_gen | |
| mkdir BAM | |
| cd BAM | |
| mkdir Source | |
| cd .. | |
| # optional - install RVM for ruby version managing. | |
| curl -sSL https://get.rvm.io | |
| rvm install ruby --latest | |
| gem install bundler | |
| bundle install | |
| bundle exec rake install | |
| ruby test.rb | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "data": { | |
| "__schema": { | |
| "queryType": { | |
| "name": "SearchQuery" | |
| }, | |
| "mutationType": { | |
| "name": "SearchMutation" | |
| }, | |
| "subscriptionType": null, | |
| "types": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "SearchQuery", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "query", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "index", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "must", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "must_not", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "should", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "q", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "fq", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page_size", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": "10" | |
| }, | |
| { | |
| "name": "sort", | |
| "description": null, | |
| "type": { | |
| "kind": "ENUM", | |
| "name": "SortOrder", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "from", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "to", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "highlight", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| }, | |
| { | |
| "name": "facet", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "bbox", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoundingBox", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "radius", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "Radius", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "spotlight", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "QueryResponse", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "prefix", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "index", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "must", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "must_not", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "should", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "q", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "fq", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page_size", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": "10" | |
| }, | |
| { | |
| "name": "sort", | |
| "description": null, | |
| "type": { | |
| "kind": "ENUM", | |
| "name": "SortOrder", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "from", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "to", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "highlight", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| }, | |
| { | |
| "name": "facet", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "bbox", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoundingBox", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "radius", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "Radius", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "spotlight", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "PrefixResponse", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "sitesearch", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "index", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "must", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "must_not", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "should", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "q", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "fq", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page_size", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": "10" | |
| }, | |
| { | |
| "name": "sort", | |
| "description": null, | |
| "type": { | |
| "kind": "ENUM", | |
| "name": "SortOrder", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "from", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "to", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "highlight", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| }, | |
| { | |
| "name": "facet", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "spotlight", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "SitesearchResponse", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "bucket", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "index", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "must", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "must_not", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "should", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "q", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "fq", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page_size", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": "10" | |
| }, | |
| { | |
| "name": "sort", | |
| "description": null, | |
| "type": { | |
| "kind": "ENUM", | |
| "name": "SortOrder", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "from", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "to", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "highlight", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| }, | |
| { | |
| "name": "facet", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "bbox", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoundingBox", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "radius", | |
| "description": null, | |
| "type": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "Radius", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "spotlight", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "TopFoundHitsResponse", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "bookmarks", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": "[\"Video\", \"Airing\"]" | |
| }, | |
| { | |
| "name": "show_completed", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "true" | |
| }, | |
| { | |
| "name": "page_size", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MediaResponse", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "watchlist", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": "[\"Video\", \"Airing\", \"Collection\", \"Series\"]" | |
| }, | |
| { | |
| "name": "page_size", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MediaResponse", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "Airings", | |
| "description": "Retrieve live, onAir, linear, or once-live video metadata sourced from EPG Metadata Service.", | |
| "args": [ | |
| { | |
| "name": "startDate", | |
| "description": "Start date for a schedule by date range. Must be accompanied by endDate. If both are present, scheduled airings will be returned. ISO8601 format (2017-01-23T21:13:31Z)", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "endDate", | |
| "description": "End date for a schedule by date range. Must be accompanied by startDate. If both are present, scheduled airings will be returned. ISO8601 format (2017-01-23T21:13:31Z)", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "onAir", | |
| "description": "If present and there are no Start and End dates, retrieve only airings that are currently onAir.", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "upcoming", | |
| "description": "If present and there are no Start and End dates, retrieve only airings will be onAir in the future.", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "genre", | |
| "description": "Genre used to filter the airing data. Required if you're filtering based on genre for onAir or scheduled metadata.", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "programType", | |
| "description": "Filter by one or more program type(s). Required if you're filtering based on program type for onAir or scheduled metadata.", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "partnerProgramIds", | |
| "description": "Filter by one or more partnerProgramIds, a unique ID provided by the partner which is consistent between Airings and VOD assets related to those Airings.", | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "channelId", | |
| "description": "Filter by ChannelId and retrieve onAir airings if partnerProgramIds is absent.", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "contentId", | |
| "description": "Filter by ContentId and retrieve airings if partnerProgramIds and channelId are both absent.", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "groupingId", | |
| "description": "Retrieve Airings that have this groupingId value. groupingId is an ID used to group Airings together by some common criteria (e.g. media related to a Eurosport Event Page).", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "endsAfter", | |
| "description": "Ends After is used in conjunction with partnerEventId and is used to filter airing data. ISO8601 format (2017-01-23T21:13:31Z)", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "languages", | |
| "description": "For Airing fields that contain multiple language-specific objects (e.g. titles), filter to only data that matches one of these language values, in priority order. The server will also perform an alt languages lookup for each provided value, checking for languages that roll up to the same ISO macro-language. If no matching content is found, the first item in the list will be used. If this argument is not provided, no filtering is performed.", | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "channelCallsigns", | |
| "description": "Filter your results by Airings that match one of the Channel Callsigns provided in this list.", | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": "The index of the page of results you would like. (Defaulted to 0)", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": "The total number of results that are returned on each 'page' of results. (Defaulted to 500)", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Airing", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "CategoryAll", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Category", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "CategoryByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Category", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "CategoryBySport", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "sport", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Category", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ChannelAll", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Channel", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ChannelByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Channel", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "CollectionAll", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Collection", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "CollectionByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Collection", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ConfigurationJsonByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "ConfigurationJson", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ConfigurationJsonByResourceKey", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "resourceKey", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "ConfigurationJson", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ConfigurationStructuredByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "ConfigurationStructured", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "DimensionByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Dimension", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "EventPageAll", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "EventPage", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "EventPageByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "EventPage", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "EventPageByLanguage", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "language", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "EventPage", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Use `EventPageAll`" | |
| }, | |
| { | |
| "name": "FieldOptionByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "FieldOption", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "KeyValueByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "KeyValue", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ListByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "List", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ListByTitle", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "title", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "List", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "MasterCutByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MasterCut", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "Media", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "partnerProgramIds", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "groupingId", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "genre", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "programType", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "languages", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "MediaList", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "MediaAssetByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MediaAsset", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "PageByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Page", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "PageByResourceKey", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "resourceKey", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Page", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "PhotoAssetByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "PhotoByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Photo", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "PhotoTemplateByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "PhotoTemplate", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "postplay", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "collectionContentId", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "seriesContentId", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "PostPlayResponse", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "Schedule", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "channelIds", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "startDate", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "endDate", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "onAir", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "ChannelSchedule", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeasonAll", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Season", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeasonByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Season", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeasonBySeasonId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "seasonId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Season", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeasonBySeasonIdAndLanguage", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "seasonId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "language", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Season", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Use `SeasonBySeasonId`" | |
| }, | |
| { | |
| "name": "SeasonBySeriesSlug", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "seriesSlug", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Season", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeasonContainerByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "SeasonContainer", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SectionByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Section", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeriesAll", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeriesByCategory", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "category", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeriesByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeriesByGenre", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "genre", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeriesBySeriesId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "seriesId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeriesBySeriesIdAndLanguage", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "seriesId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "language", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Use `SeriesBySeriesId`" | |
| }, | |
| { | |
| "name": "SeriesBySeriesSlug", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "seriesSlug", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SeriesContainerByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "SeriesContainer", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ShortContentByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "ShortContent", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "TemplateAspectRatioByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "TemplateAspectRatio", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "TitleAssetByContentId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "TitleAsset", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "VideoAll", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "VideoByCategory", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "category", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "VideoByContentId", | |
| "description": "Languages filter is unused on contentId lookups", | |
| "args": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "languages", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "VideoByEpgPartnerProgramId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "epgPartnerProgramId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "languages", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Use `VideoByPartnerProgramId`" | |
| }, | |
| { | |
| "name": "VideoByGenre", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "genre", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "languages", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "VideoByGroupingId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "groupingId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "languages", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "VideoByPartnerProgramId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "partnerProgramId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "languages", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "page", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "pageSize", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "VideoBySeasonId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "seasonId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "VideoBySeriesId", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "seriesId", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "VideoBySeriesSlug", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "seriesSlug", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "videodetails", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "resourceKey", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "VideoDetail", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "QueryResponse", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseMeta", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "query", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "SearchIndexQuery", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "entities", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "RecognizedEntities", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "facets", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseFacet", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "hits", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "SearchHit", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "User", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "SearchResponse", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "SearchResponse", | |
| "description": "The `SearchResponse` is the main response from the Search API.", | |
| "fields": [ | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseMeta", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "query", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "SearchIndexQuery", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "entities", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "RecognizedEntities", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "facets", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseFacet", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "hits", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "SearchHit", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "User", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "QueryResponse", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "PrefixResponse", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SitesearchResponse", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseMeta", | |
| "description": "High level information about the result set, including number of results, page size, and offset", | |
| "fields": [ | |
| { | |
| "name": "hits", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "time", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "page_size", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "offset", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "errors", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since represented in JSON as double-precision floating point numbers specifiedby [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "SCALAR", | |
| "name": "SearchIndexQuery", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "SCALAR", | |
| "name": "RecognizedEntities", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseFacet", | |
| "description": "Term aggregations for all matching documents", | |
| "fields": [ | |
| { | |
| "name": "field", | |
| "description": "The term being aggregated", | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "values", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseFacetValue", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseFacetValue", | |
| "description": "The term value and its aggregate count", | |
| "fields": [ | |
| { | |
| "name": "count", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "value", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "OmniScalar", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "SCALAR", | |
| "name": "OmniScalar", | |
| "description": "The `OmniScalar` type represents any kind of scalar type. For values whose type is nondeterministic, an OmniScalar will parse and serialize it appropriately. Non-scalar types (lists and objects) are considered null.", | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SearchHit", | |
| "description": "A `SearchHit` is an individual document which matches the supplied query.", | |
| "fields": [ | |
| { | |
| "name": "user", | |
| "description": "DEPRECATED. User SearchResultDoc.user instead", | |
| "args": [], | |
| "type": { | |
| "kind": "UNION", | |
| "name": "MetaUser", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "User field moved inside SearchResultDoc" | |
| }, | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "SearchHitMeta", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "hit", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "UNION", | |
| "name": "SearchResultDoc", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "UNION", | |
| "name": "MetaUser", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "MediaUser", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "User", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MediaUser", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "userId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "lastWatched", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "percentCompleted", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Float", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "onWatchlist", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "secondsWatched", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "SCALAR", | |
| "name": "Float", | |
| "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point). ", | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "description": "The `Boolean` scalar type represents `true` or `false`.", | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "User", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "userId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SearchHitMeta", | |
| "description": "Canonical information about an individual `SearchHit`, including its id in the search index, its type, url, and dynamically highlighted title and snippet", | |
| "fields": [ | |
| { | |
| "name": "id", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "url", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "title", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "snippet", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "language", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "publish_timestamp", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "display_timestamp", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "update_timestamp", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "sort_timestamp", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "score", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Float", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "SearchHitMetaTag", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "image", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "ImageCut", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SearchHitMetaTag", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "value", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "displayName", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "ImageCut", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "aspectRatio", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "height", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "width", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "src", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "at2x", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "at3x", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "dimensions", | |
| "description": "Pixel dimensions in the form WIDTHxHEIGHT", | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "UNION", | |
| "name": "SearchResultDoc", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Airing", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EventPage", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Channel", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Category", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "ConfigurationJson", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MediaList", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Collection", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Season", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "List", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Section", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "ShortContent", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SeriesContainer", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SeasonContainer", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MediaAsset", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "displayRunTime", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "genres", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "programId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "runTime", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "WatchlistBookmarksUser", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "photos", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "actorsDisplay", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "appears", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "assetName", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "billingID", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "calendarEventId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "closedCaptioning", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "creationDate", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "description", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "displayAsLastChance", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "displayAsNew", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "epgPartnerProgramId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Renamed to partnerProgramId" | |
| }, | |
| { | |
| "name": "partnerProgramId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "episodeId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "episodeName", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "episodeSequenceNumber", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "expires", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "keywords", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "keywordsMediaRights", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "To be removed from schema" | |
| }, | |
| { | |
| "name": "language", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "media", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "MediaAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "milestoneStart", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MilestoneMarker", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "milestoneEnd", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MilestoneMarker", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "product", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "provider", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "providerID", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "providerQAContact", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ratings", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Rating", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "releaseDate", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seasonFinale", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seasonId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seriesId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seasonPremiere", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "slates", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Slate", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "studio", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "studioCode", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "studioName", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "titles", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "TitleAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "writerDisplay", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "series_slug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Use seriesSlug instead" | |
| }, | |
| { | |
| "name": "season_slug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Use seasonSlug instead" | |
| }, | |
| { | |
| "name": "seriesSlug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seasonSlug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "Media", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "WatchlistBookmarksPersonalizedHit", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MasterCut", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Photo", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MediaAsset", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "TitleAsset", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EventPage", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EventDetail", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Channel", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Category", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "ConfigurationJson", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Collection", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Season", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "List", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Section", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "ShortContent", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SeriesContainer", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SeasonContainer", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "ConfigurationStructured", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Dimension", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "FieldOption", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "KeyValue", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Page", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "PhotoTemplate", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "TemplateAspectRatio", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "value", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "displayName", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "Media", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "displayRunTime", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "genres", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "programId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "runTime", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Airing", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "WatchlistBookmarksPersonalizedHit", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "WatchlistBookmarksUser", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Airing", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "WatchlistBookmarksUser", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "onWatchlist", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "lastWatched", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "percentCompleted", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Float", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "secondsWatched", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "WatchlistMethods", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "WatchlistMethods", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "onWatchlist", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "WatchlistBookmarksUser", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "WatchlistUser", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "altText", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "caption", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "credit", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "headline", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "rawImage", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "width", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "height", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "inning", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "purchaseUrl", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "masterCuts", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "MasterCut", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "photos", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Photo", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "timestamp", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "title", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MasterCut", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "aspectRatio", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "height", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "width", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "x1", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "y1", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Photo", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "height", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "imageLocation", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "masterCutId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "width", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MediaAsset", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "mediaId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "milestones", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Milestone", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "playbackUrls", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "HypermediaLink", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "audioType", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "captions", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "dubbedLanguages", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "HDContent", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "language", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "mediaState", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "secure", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "subtitleLanguages", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "mediaAssetType", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "PlayableMedia", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "PlayableMedia", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "mediaId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "milestones", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Milestone", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "playbackUrls", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "HypermediaLink", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "MediaAsset", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Airing", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Milestone", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "photos", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "blurb", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "id", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "keywords", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Keyword", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "milestoneTime", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "MilestoneTime", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "milestoneType", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "title", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Keyword", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "value", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MilestoneTime", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "startDatetime", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "start", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "HypermediaLink", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "href", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "params", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Param", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "rel", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "templated", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Param", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "name", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "description", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MilestoneMarker", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "absoluteTime", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "offsetSeconds", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Rating", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "value", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "system", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "advisories", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Slate", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "title", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "urls", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Url", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Url", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "rel", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "href", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "TitleAsset", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "episodeName", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "summaryLong", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "summaryShort", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "title", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "titleBrief", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "titleSortName", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "language", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "slug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Use titleSlug instead" | |
| }, | |
| { | |
| "name": "titleSlug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Airing", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "displayRunTime", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "genres", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "programId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "runTime", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "mediaId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "milestones", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Milestone", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "playbackUrls", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "HypermediaLink", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "WatchlistBookmarksUser", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "actorsDisplay", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "adId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "captionLanguages", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "channel", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "EpgChannel", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "endDate", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "eventId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "expires", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "feedLanguage", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "feedType", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "groupingId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "keywords", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "EpgKeywords", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "linear", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "mediaConfig", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "EpgMediaConfig", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "partnerProgramId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "photos", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "EpgPhoto", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "programType", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "rating", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "EpgRating", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Deprecated in favor of ratings" | |
| }, | |
| { | |
| "name": "ratings", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Rating", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "slates", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Slate", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "startDate", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "teams", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "EpgTeam", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "titles", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "EpgTitle", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "liveBroadcast", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "runtimeMillis", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "slug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "series_slug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "No longer used" | |
| }, | |
| { | |
| "name": "season_slug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "No longer used" | |
| }, | |
| { | |
| "name": "seasonId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "Media", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "PlayableMedia", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "WatchlistBookmarksPersonalizedHit", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EpgChannel", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "callsign", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "id", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "parent", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "partnerId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EpgKeywords", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "promos", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EpgMediaConfig", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "state", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "productType", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EpgPhoto", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "aspectRatio", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "contentSize", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "id", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "uri", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "width", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "height", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EpgRating", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "code", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "system", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EpgTeam", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "id", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EpgTitle", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "descriptionLong", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "descriptionShort", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "episodeName", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "language", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "title", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EventPage", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "heroImage", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tileImage", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "appears", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "bigBlurb", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "endDate", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "expires", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "media", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "MediaList", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "publishDestination", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "eventDetails", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "EventDetail", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "scheduledPublish", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "startDate", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "subTitle", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "title", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MediaList", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "name", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "videos", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INTERFACE", | |
| "name": "Media", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "EventDetail", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "title", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "bigBlurb", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "subTitle", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Channel", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "logoImage", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Category", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "defaultAssetImage", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "logoImage", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "sport", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "ConfigurationJson", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "configuration", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "KeyVal", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "KeyVal", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "key", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "val", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Collection", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "WatchlistUser", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "photos", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "title", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "blurb", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "list", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "WatchlistPersonalizedHit", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "WatchlistPersonalizedHit", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "WatchlistUser", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "Collection", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "WatchlistUser", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "onWatchlist", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "WatchlistMethods", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "WatchlistUser", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "photos", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seriesTitle", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seriesBrief", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seriesSortName", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "summaryShort", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "summaryLong", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "language", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seriesId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seriesSequenceNumber", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "genre", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Use genres instead" | |
| }, | |
| { | |
| "name": "genres", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "category", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "slug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "User seriesSlug instead" | |
| }, | |
| { | |
| "name": "seriesSlug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "INTERFACE", | |
| "name": "WatchlistPersonalizedHit", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Season", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "photos", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seasonTitle", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seasonBrief", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seasonSortName", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "summaryShort", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "summaryLong", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "language", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seriesId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seasonId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seasonSequenceNumber", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "slug", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "List", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "key", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "numitems", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "list", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "blurb", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "aliasList", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Section", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "photos", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "url", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "title", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "key", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "list", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "ShortContent", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "photos", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "max_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_width", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "min_height", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "PhotoAsset", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "list", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "blurb", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "headline", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "assets", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SeriesContainer", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "series", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SeasonContainer", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "season", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Season", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolFilter", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": [ | |
| { | |
| "name": "termsFilters", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "TermsFilter", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INPUT_OBJECT", | |
| "name": "TermsFilter", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": [ | |
| { | |
| "name": "attributeName", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "values", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "ENUM", | |
| "name": "SortOrder", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": [ | |
| { | |
| "name": "best", | |
| "description": null, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "new", | |
| "description": null, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "old", | |
| "description": null, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoundingBox", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": [ | |
| { | |
| "name": "top_left", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "Coordinate", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "bottom_right", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "Coordinate", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INPUT_OBJECT", | |
| "name": "Coordinate", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": [ | |
| { | |
| "name": "lat", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "Float", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "lon", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "Float", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INPUT_OBJECT", | |
| "name": "Radius", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": [ | |
| { | |
| "name": "loc", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "Coordinate", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "distance", | |
| "description": null, | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "PrefixResponse", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseMeta", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "query", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "SearchIndexQuery", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "entities", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "RecognizedEntities", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "facets", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseFacet", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "hits", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "SearchHit", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "User", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "SearchResponse", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SitesearchResponse", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseMeta", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "query", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "SearchIndexQuery", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "entities", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "RecognizedEntities", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "facets", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseFacet", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "hits", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "SearchHit", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "User", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "SearchResponse", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "TopFoundHitsResponse", | |
| "description": "The `TopFoundHitsResponse` represents and aggregation of `SearchResponse`s.", | |
| "fields": [ | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseMeta", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "query", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "SearchIndexQuery", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "aggs", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "TopFoundHitsAgg", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "entities", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "RecognizedEntities", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "TopFoundHitsAgg", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "field", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "buckets", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "TopFoundHitsBucket", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "TopFoundHitsBucket", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "value", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "count", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "hits", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "SearchHit", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MediaResponse", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "hits", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "MediaHit", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "SearchResponseMeta", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "User", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MediaHit", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "hit", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "UNION", | |
| "name": "Watchable", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "user", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MediaUser", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "SearchHitMeta", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "UNION", | |
| "name": "Watchable", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Airing", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Series", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Collection", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "ConfigurationStructured", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "configuration", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "list", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Dimension", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "width", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "quality", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "height", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "FieldOption", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "value", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "displayName", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "KeyValue", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "value", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "listValue", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "key", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Page", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "body", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "blurb", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "noFollow", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seoKeywords", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seoBlurb", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "seoTitle", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "title", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "key", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "PhotoTemplate", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "templateKey", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "aspectRatios", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "TemplateAspectRatio", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "TemplateAspectRatio", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "tags", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "type", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Tag", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "aspectRatio", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "dimensions", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "Dimension", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [ | |
| { | |
| "kind": "INTERFACE", | |
| "name": "CmsItem", | |
| "ofType": null | |
| } | |
| ], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "PostPlayResponse", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Meta", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "content", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "UNION", | |
| "name": "VideoAiring", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Meta", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "autoPlay", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "displayType", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "ENUM", | |
| "name": "DisplayType", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "ENUM", | |
| "name": "DisplayType", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": [ | |
| { | |
| "name": "end", | |
| "description": null, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "episode", | |
| "description": null, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "UNION", | |
| "name": "VideoAiring", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Airing", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "ChannelSchedule", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "channelId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "videoAirings", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "VideoAiringPairing", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "VideoAiringPairing", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "video", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "airing", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "Airing", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "VideoDetail", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "key", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "value", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "UNION", | |
| "name": "ContentOrContents", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "UNION", | |
| "name": "ContentOrContents", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": [ | |
| { | |
| "kind": "OBJECT", | |
| "name": "Video", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Airing", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "List", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MediaList", | |
| "ofType": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "Collection", | |
| "ofType": null | |
| } | |
| ] | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "SearchMutation", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "deleteBookmarks", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "mediaIds", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "DeleteBookmarks", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "deleteAllBookmarks", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "DeleteAllBookmarks", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "addToWatchlist", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentIds", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "AddToWatchlist", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "deleteFromWatchlist", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "contentIds", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "DeleteFromWatchlist", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "clearWatchlist", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "ClearWatchlist", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "DeleteBookmarks", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "bookmarks", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "DeletedBookmark", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MetaDeletion", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "DeletedBookmark", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "mediaId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "userId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "lastWatched", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Date", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "secondsWatched", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MetaDeletion", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "errorMessages", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "deletionsAttempted", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "deletionsSucceeded", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "DeleteAllBookmarks", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "bookmarks", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "DeletedBookmark", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MetaDeletion", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "AddToWatchlist", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "watchlistItems", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "WatchlistItem", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MetaWatchlistAdd", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "WatchlistItem", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "userId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "contentId", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "ID", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MetaWatchlistAdd", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "errorMessages", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "additionsAttempted", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "additionsSucceeded", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "DeleteFromWatchlist", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "watchlistItems", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "WatchlistItem", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MetaWatchlistDelete", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "MetaWatchlistDelete", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "errorMessages", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "deletionsAttempted", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "deletionsSucceeded", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "ClearWatchlist", | |
| "description": null, | |
| "fields": [ | |
| { | |
| "name": "watchlistItems", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "WatchlistItem", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "meta", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "MetaWatchlistDelete", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "__Schema", | |
| "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation and subscription operations.", | |
| "fields": [ | |
| { | |
| "name": "types", | |
| "description": "A list of all types supported by this server.", | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "__Type", | |
| "ofType": null | |
| } | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "queryType", | |
| "description": "The type that query operations will be rooted at.", | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "__Type", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "mutationType", | |
| "description": "If this server supports mutation, the type that mutation operations will be rooted at.", | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "__Type", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "subscriptionType", | |
| "description": "If this server support subscription, the type that subscription operations will be rooted at.", | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "__Type", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "directives", | |
| "description": "A list of all directives supported by this server.", | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "__Directive", | |
| "ofType": null | |
| } | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "__Type", | |
| "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", | |
| "fields": [ | |
| { | |
| "name": "kind", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "ENUM", | |
| "name": "__TypeKind", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "name", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "description", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "fields", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "includeDeprecated", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "__Field", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "interfaces", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "__Type", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "possibleTypes", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "__Type", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "enumValues", | |
| "description": null, | |
| "args": [ | |
| { | |
| "name": "includeDeprecated", | |
| "description": null, | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| } | |
| ], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "__EnumValue", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "inputFields", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "__InputValue", | |
| "ofType": null | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ofType", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "OBJECT", | |
| "name": "__Type", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "ENUM", | |
| "name": "__TypeKind", | |
| "description": "An enum describing what kind of type a given `__Type` is", | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": [ | |
| { | |
| "name": "SCALAR", | |
| "description": "Indicates this type is a scalar.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "OBJECT", | |
| "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "INTERFACE", | |
| "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "UNION", | |
| "description": "Indicates this type is a union. `possibleTypes` is a valid field.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ENUM", | |
| "description": "Indicates this type is an enum. `enumValues` is a valid field.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "INPUT_OBJECT", | |
| "description": "Indicates this type is an input object. `inputFields` is a valid field.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "LIST", | |
| "description": "Indicates this type is a list. `ofType` is a valid field.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "NON_NULL", | |
| "description": "Indicates this type is a non-null. `ofType` is a valid field.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "__Field", | |
| "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", | |
| "fields": [ | |
| { | |
| "name": "name", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "description", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "args", | |
| "description": null, | |
| "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 | |
| } | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "__Type", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "isDeprecated", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "deprecationReason", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "__InputValue", | |
| "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", | |
| "fields": [ | |
| { | |
| "name": "name", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "description", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "type", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "OBJECT", | |
| "name": "__Type", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "defaultValue", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "__EnumValue", | |
| "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", | |
| "fields": [ | |
| { | |
| "name": "name", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "description", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "isDeprecated", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "deprecationReason", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "OBJECT", | |
| "name": "__Directive", | |
| "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", | |
| "fields": [ | |
| { | |
| "name": "name", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "description", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "locations", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "ENUM", | |
| "name": "__DirectiveLocation", | |
| "ofType": null | |
| } | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "args", | |
| "description": null, | |
| "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 | |
| } | |
| } | |
| } | |
| }, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "onOperation", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Use `locations`." | |
| }, | |
| { | |
| "name": "onFragment", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Use `locations`." | |
| }, | |
| { | |
| "name": "onField", | |
| "description": null, | |
| "args": [], | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| } | |
| }, | |
| "isDeprecated": true, | |
| "deprecationReason": "Use `locations`." | |
| } | |
| ], | |
| "inputFields": null, | |
| "interfaces": [], | |
| "enumValues": null, | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "ENUM", | |
| "name": "__DirectiveLocation", | |
| "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": [ | |
| { | |
| "name": "QUERY", | |
| "description": "Location adjacent to a query operation.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "MUTATION", | |
| "description": "Location adjacent to a mutation operation.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SUBSCRIPTION", | |
| "description": "Location adjacent to a subscription operation.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "FIELD", | |
| "description": "Location adjacent to a field.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "FRAGMENT_DEFINITION", | |
| "description": "Location adjacent to a fragment definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "FRAGMENT_SPREAD", | |
| "description": "Location adjacent to a fragment spread.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "INLINE_FRAGMENT", | |
| "description": "Location adjacent to an inline fragment.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SCHEMA", | |
| "description": "Location adjacent to a schema definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "SCALAR", | |
| "description": "Location adjacent to a scalar definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "OBJECT", | |
| "description": "Location adjacent to an object definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "FIELD_DEFINITION", | |
| "description": "Location adjacent to a field definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ARGUMENT_DEFINITION", | |
| "description": "Location adjacent to an argument definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "INTERFACE", | |
| "description": "Location adjacent to an interface definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "UNION", | |
| "description": "Location adjacent to a union definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ENUM", | |
| "description": "Location adjacent to an enum definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "ENUM_VALUE", | |
| "description": "Location adjacent to an enum value definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "INPUT_OBJECT", | |
| "description": "Location adjacent to an input object definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "INPUT_FIELD_DEFINITION", | |
| "description": "Location adjacent to an input object field definition.", | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "ENUM", | |
| "name": "SortDirection", | |
| "description": "The Enum Type for Sort Order (Ascending or Descending)", | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": [ | |
| { | |
| "name": "Ascending", | |
| "description": null, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "Descending", | |
| "description": null, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "ENUM", | |
| "name": "MediaRight", | |
| "description": "The Enumeration of different types of Media Rights", | |
| "fields": null, | |
| "inputFields": null, | |
| "interfaces": null, | |
| "enumValues": [ | |
| { | |
| "name": "GeoMediaRight", | |
| "description": null, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "EntitlementMediaRight", | |
| "description": null, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| }, | |
| { | |
| "name": "BlackoutMediaRight", | |
| "description": null, | |
| "isDeprecated": false, | |
| "deprecationReason": null | |
| } | |
| ], | |
| "possibleTypes": null | |
| }, | |
| { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolDirectiveTermsFilter", | |
| "description": null, | |
| "fields": null, | |
| "inputFields": [ | |
| { | |
| "name": "attributeName", | |
| "description": "Attribute to perform filtering on. Dot notation supported.", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "values", | |
| "description": "Values to match against attributeName", | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ], | |
| "interfaces": null, | |
| "enumValues": null, | |
| "possibleTypes": null | |
| } | |
| ], | |
| "directives": [ | |
| { | |
| "name": "include", | |
| "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "if", | |
| "description": "Included when true.", | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "skip", | |
| "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "if", | |
| "description": "Skipped when true.", | |
| "type": { | |
| "kind": "NON_NULL", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "filter", | |
| "description": "Filter out any content that does not contain the specified field and matching value.", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "filterBy", | |
| "description": "Filter the results based on this field. filterValue must also be specified.", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "filterValue", | |
| "description": "Only return items in which the field specified in the \"filterBy\" arg has this value", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "paginate", | |
| "description": "Paginate query results sets", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "startIndex", | |
| "description": "Page Offset", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "maxResults", | |
| "description": "Page Size", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Int", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "sort", | |
| "description": "Sort query results and resolved lists", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "sortDirection", | |
| "description": "Direction of the sort: Ascending or Descending", | |
| "type": { | |
| "kind": "ENUM", | |
| "name": "SortDirection", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "sortBy", | |
| "description": "Field to sort the list by. Ex. \"startDate\"", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "enforceParentalControls", | |
| "description": "Enforce parental control filtering.", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "if", | |
| "description": "Enforce parental control filtering if true", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "Boolean", | |
| "ofType": null | |
| }, | |
| "defaultValue": "false" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "enforceMediaRights", | |
| "description": "Choose which media rights will be enforced", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "mediaRights", | |
| "description": "A list of media rights to filter on.", | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "ENUM", | |
| "name": "MediaRight", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "must", | |
| "description": "Boolean MUST filter. All results must match all termsFilters.", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "termsFilters", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolDirectiveTermsFilter", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "must_not", | |
| "description": "Boolean MUST_NOT filter. All results must not match any of the termsFilters.", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "termsFilters", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolDirectiveTermsFilter", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "should", | |
| "description": "Boolean SHOULD filter. All results must match at least one of the termsFilters.", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "termsFilters", | |
| "description": null, | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "INPUT_OBJECT", | |
| "name": "BoolDirectiveTermsFilter", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "context", | |
| "description": "Contextual arguments for application-specific logic", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "index", | |
| "description": "Specify an alternate index to query instead of the default.", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| }, | |
| { | |
| "name": "uiLang", | |
| "description": "A language override for the query. Provide the UI Language here.", | |
| "type": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| }, | |
| "defaultValue": null | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "preferLanguages", | |
| "description": "Language order of preference", | |
| "locations": [ | |
| "FIELD", | |
| "FRAGMENT_SPREAD", | |
| "INLINE_FRAGMENT" | |
| ], | |
| "args": [ | |
| { | |
| "name": "languages", | |
| "description": "A list of preferred languages, in order of preference.", | |
| "type": { | |
| "kind": "LIST", | |
| "name": null, | |
| "ofType": { | |
| "kind": "SCALAR", | |
| "name": "String", | |
| "ofType": null | |
| } | |
| }, | |
| "defaultValue": null | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'graphql_swift_gen' | |
| require 'graphql_schema' | |
| require 'json' | |
| introspection_result = File.read("schema.json") | |
| schema = GraphQLSchema.new(JSON.parse(introspection_result)) | |
| GraphQLSwiftGen.new(schema, | |
| nest_under: 'BAMify' | |
| ).save("#{Dir.pwd}/BAM/Source") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment