diff --git a/execution/engine/execution_engine_test.go b/execution/engine/execution_engine_test.go index 7d274f7504..14cfa423c4 100644 --- a/execution/engine/execution_engine_test.go +++ b/execution/engine/execution_engine_test.go @@ -5,6 +5,7 @@ import ( "compress/flate" "compress/gzip" "context" + "encoding/json" "fmt" "io" "net/http" @@ -12,6 +13,7 @@ import ( "testing" "github.com/jensneuse/abstractlogger" + "github.com/sebdah/goldie/v2" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -191,8 +193,10 @@ type ExecutionEngineTestCase struct { fields plan.FieldConfigurations engineOptions []ExecutionOptions expectedResponse string + expectedFixture string customResolveMap map[string]resolve.CustomResolve skipReason string + indentJSON bool } func TestExecutionEngine_Execute(t *testing.T) { @@ -233,8 +237,20 @@ func TestExecutionEngine_Execute(t *testing.T) { defer execCtxCancel() err = engine.Execute(execCtx, &operation, &resultWriter, testCase.engineOptions...) actualResponse := resultWriter.String() - assert.Equal(t, testCase.expectedResponse, actualResponse) + if testCase.indentJSON { + dst := new(bytes.Buffer) + require.NoError(t, json.Indent(dst, []byte(actualResponse), "", " ")) + actualResponse = dst.String() + } + + if testCase.expectedFixture != "" { + g := goldie.New(t, goldie.WithFixtureDir("testdata"), goldie.WithNameSuffix(".json")) + g.Assert(t, testCase.expectedFixture, []byte(actualResponse)) + return + } + + assert.Equal(t, testCase.expectedResponse, actualResponse) if withError { assert.Error(t, err) if expectedErrorMessage != "" { @@ -286,6 +302,37 @@ func TestExecutionEngine_Execute(t *testing.T) { }, )) + t.Run("execute type introspection query with typenames", runWithoutError( + ExecutionEngineTestCase{ + schema: schema, + operation: func(t *testing.T) graphql.Request { + return graphql.Request{ + OperationName: "myIntrospection", + Query: ` + query myIntrospection(){ + q: __type(name: "Query") { + __typename + name + kind + fields { + __typename + name + } + } + h: __type(name: "Human") { + name + fields { + name + } + } + } + `, + } + }, + expectedResponse: `{"data":{"q":{"__typename":"__Type","name":"Query","kind":"OBJECT","fields":[{"__typename":"__Field","name":"droid"},{"__typename":"__Field","name":"search"},{"__typename":"__Field","name":"searchResults"}]},"h":{"name":"Human","fields":[{"name":"name"},{"name":"friends"}]}}}`, + }, + )) + t.Run("execute type introspection query for not existing type", runWithoutError( ExecutionEngineTestCase{ schema: schema, @@ -336,7 +383,19 @@ func TestExecutionEngine_Execute(t *testing.T) { operation: func(t *testing.T) graphql.Request { return graphql.StarwarsRequestForQuery(t, starwars.FileIntrospectionQuery) }, - expectedResponse: `{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":{"name":"Subscription"},"types":[{"kind":"UNION","name":"SearchResult","description":"","fields":null,"inputFields":[],"interfaces":[],"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Human","ofType":null},{"kind":"OBJECT","name":"Droid","ofType":null},{"kind":"OBJECT","name":"Starship","ofType":null}]},{"kind":"OBJECT","name":"Query","description":"","fields":[{"name":"hero","description":"","args":[],"type":{"kind":"INTERFACE","name":"Character","ofType":null},"isDeprecated":true,"deprecationReason":"No longer supported"},{"name":"droid","description":"","args":[{"name":"id","description":"","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Droid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"search","description":"","args":[{"name":"name","description":"","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"UNION","name":"SearchResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"searchResults","description":"","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"UNION","name":"SearchResult","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":[],"interfaces":[],"enumValues":null,"possibleTypes":[]},{"kind":"OBJECT","name":"Mutation","description":"","fields":[{"name":"createReview","description":"","args":[{"name":"episode","description":"","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"Episode","ofType":null}},"defaultValue":null},{"name":"review","description":"","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ReviewInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Review","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":[],"interfaces":[],"enumValues":null,"possibleTypes":[]},{"kind":"OBJECT","name":"Subscription","description":"","fields":[{"name":"remainingJedis","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":[],"interfaces":[],"enumValues":null,"possibleTypes":[]},{"kind":"INPUT_OBJECT","name":"ReviewInput","description":"","fields":null,"inputFields":[{"name":"stars","description":"","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"commentary","description":"","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":[],"enumValues":null,"possibleTypes":[]},{"kind":"OBJECT","name":"Review","description":"","fields":[{"name":"id","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"stars","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"commentary","description":"","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":[],"interfaces":[],"enumValues":null,"possibleTypes":[]},{"kind":"ENUM","name":"Episode","description":"","fields":null,"inputFields":[],"interfaces":[],"enumValues":[{"name":"NEWHOPE","description":"","isDeprecated":false,"deprecationReason":null},{"name":"EMPIRE","description":"","isDeprecated":false,"deprecationReason":null},{"name":"JEDI","description":"","isDeprecated":true,"deprecationReason":"No longer supported"}],"possibleTypes":[]},{"kind":"INTERFACE","name":"Character","description":"","fields":[{"name":"name","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"friends","description":"","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Character","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":[],"interfaces":[],"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Human","ofType":null},{"kind":"OBJECT","name":"Droid","ofType":null}]},{"kind":"OBJECT","name":"Human","description":"","fields":[{"name":"name","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"height","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":true,"deprecationReason":"No longer supported"},{"name":"friends","description":"","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Character","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":[],"interfaces":[{"kind":"INTERFACE","name":"Character","ofType":null}],"enumValues":null,"possibleTypes":[]},{"kind":"OBJECT","name":"Droid","description":"","fields":[{"name":"name","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"primaryFunction","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"friends","description":"","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Character","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":[],"interfaces":[{"kind":"INTERFACE","name":"Character","ofType":null}],"enumValues":null,"possibleTypes":[]},{"kind":"INTERFACE","name":"Vehicle","description":"","fields":[{"name":"length","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":[],"interfaces":[],"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Starship","ofType":null}]},{"kind":"OBJECT","name":"Starship","description":"","fields":[{"name":"name","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"length","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":[],"interfaces":[{"kind":"INTERFACE","name":"Vehicle","ofType":null}],"enumValues":null,"possibleTypes":[]},{"kind":"SCALAR","name":"Int","description":"The 'Int' scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.","fields":null,"inputFields":[],"interfaces":[],"enumValues":null,"possibleTypes":[]},{"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":[],"interfaces":[],"enumValues":null,"possibleTypes":[]},{"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":[],"interfaces":[],"enumValues":null,"possibleTypes":[]},{"kind":"SCALAR","name":"Boolean","description":"The 'Boolean' scalar type represents 'true' or 'false' .","fields":null,"inputFields":[],"interfaces":[],"enumValues":null,"possibleTypes":[]},{"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":[],"interfaces":[],"enumValues":null,"possibleTypes":[]}],"directives":[{"name":"include","description":"Directs the executor to include this field or fragment only when the 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 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":"deprecated","description":"Marks an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion\n for how to access supported similar data. Formatted in\n [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}`, + expectedFixture: "full_introspection", + indentJSON: true, + }, + )) + + t.Run("execute full introspection query with typenames", runWithoutError( + ExecutionEngineTestCase{ + schema: schema, + operation: func(t *testing.T) graphql.Request { + return graphql.StarwarsRequestForQuery(t, starwars.FileIntrospectionQueryWithTypenames) + }, + expectedFixture: "full_introspection_with_typenames", + indentJSON: true, }, )) }) diff --git a/execution/engine/testdata/full_introspection.json b/execution/engine/testdata/full_introspection.json new file mode 100644 index 0000000000..a21e59e340 --- /dev/null +++ b/execution/engine/testdata/full_introspection.json @@ -0,0 +1,722 @@ +{ + "data": { + "__schema": { + "queryType": { + "name": "Query" + }, + "mutationType": { + "name": "Mutation" + }, + "subscriptionType": { + "name": "Subscription" + }, + "types": [ + { + "kind": "UNION", + "name": "SearchResult", + "description": "", + "fields": null, + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Human", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Droid", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Starship", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "Query", + "description": "", + "fields": [ + { + "name": "hero", + "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Character", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "No longer supported" + }, + { + "name": "droid", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Droid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "search", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "UNION", + "name": "SearchResult", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchResults", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "UNION", + "name": "SearchResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": "", + "fields": [ + { + "name": "createReview", + "description": "", + "args": [ + { + "name": "episode", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Episode", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "review", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReviewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Review", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "kind": "OBJECT", + "name": "Subscription", + "description": "", + "fields": [ + { + "name": "remainingJedis", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "ReviewInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "stars", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "commentary", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "kind": "OBJECT", + "name": "Review", + "description": "", + "fields": [ + { + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stars", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commentary", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "kind": "ENUM", + "name": "Episode", + "description": "", + "fields": null, + "inputFields": [], + "interfaces": [], + "enumValues": [ + { + "name": "NEWHOPE", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "EMPIRE", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "JEDI", + "description": "", + "isDeprecated": true, + "deprecationReason": "No longer supported" + } + ], + "possibleTypes": [] + }, + { + "kind": "INTERFACE", + "name": "Character", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "friends", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Character", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Human", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Droid", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "Human", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "No longer supported" + }, + { + "name": "friends", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Character", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Character", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": [] + }, + { + "kind": "OBJECT", + "name": "Droid", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "primaryFunction", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "friends", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Character", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Character", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": [] + }, + { + "kind": "INTERFACE", + "name": "Vehicle", + "description": "", + "fields": [ + { + "name": "length", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Starship", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "Starship", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "length", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Vehicle", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": [] + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The 'Int' scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "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": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "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": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The 'Boolean' scalar type represents 'true' or 'false' .", + "fields": null, + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "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": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + } + ], + "directives": [ + { + "name": "include", + "description": "Directs the executor to include this field or fragment only when the 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 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": "deprecated", + "description": "Marks an element of a GraphQL schema as no longer supported.", + "locations": [ + "FIELD_DEFINITION", + "ENUM_VALUE" + ], + "args": [ + { + "name": "reason", + "description": "Explains why this element was deprecated, usually also including a suggestion\n for how to access supported similar data. Formatted in\n [Markdown](https://daringfireball.net/projects/markdown/).", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"No longer supported\"" + } + ] + } + ] + } + } +} \ No newline at end of file diff --git a/execution/engine/testdata/full_introspection_with_typenames.json b/execution/engine/testdata/full_introspection_with_typenames.json new file mode 100644 index 0000000000..6671e16f88 --- /dev/null +++ b/execution/engine/testdata/full_introspection_with_typenames.json @@ -0,0 +1,816 @@ +{ + "data": { + "__schema": { + "__typename": "__Schema", + "queryType": { + "__typename": "__Type", + "name": "Query" + }, + "mutationType": { + "__typename": "__Type", + "name": "Mutation" + }, + "subscriptionType": { + "__typename": "__Type", + "name": "Subscription" + }, + "types": [ + { + "__typename": "__Type", + "kind": "UNION", + "name": "SearchResult", + "description": "", + "fields": null, + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Human", + "ofType": null + }, + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Droid", + "ofType": null + }, + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Starship", + "ofType": null + } + ] + }, + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Query", + "description": "", + "fields": [ + { + "__typename": "__Field", + "name": "hero", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "INTERFACE", + "name": "Character", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "No longer supported" + }, + { + "__typename": "__Field", + "name": "droid", + "description": "", + "args": [ + { + "__typename": "__InputValue", + "name": "id", + "description": "", + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Droid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "__typename": "__Field", + "name": "search", + "description": "", + "args": [ + { + "__typename": "__InputValue", + "name": "name", + "description": "", + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "__typename": "__Type", + "kind": "UNION", + "name": "SearchResult", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "__typename": "__Field", + "name": "searchResults", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "UNION", + "name": "SearchResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Mutation", + "description": "", + "fields": [ + { + "__typename": "__Field", + "name": "createReview", + "description": "", + "args": [ + { + "__typename": "__InputValue", + "name": "episode", + "description": "", + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Episode", + "ofType": null + } + }, + "defaultValue": null + }, + { + "__typename": "__InputValue", + "name": "review", + "description": "", + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReviewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Review", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Subscription", + "description": "", + "fields": [ + { + "__typename": "__Field", + "name": "remainingJedis", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "kind": "INPUT_OBJECT", + "name": "ReviewInput", + "description": "", + "fields": null, + "inputFields": [ + { + "__typename": "__InputValue", + "name": "stars", + "description": "", + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "__typename": "__InputValue", + "name": "commentary", + "description": "", + "type": { + "__typename": "__Type", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Review", + "description": "", + "fields": [ + { + "__typename": "__Field", + "name": "id", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "__typename": "__Field", + "name": "stars", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "__typename": "__Field", + "name": "commentary", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "kind": "ENUM", + "name": "Episode", + "description": "", + "fields": null, + "inputFields": [], + "interfaces": [], + "enumValues": [ + { + "__typename": "__EnumValue", + "name": "NEWHOPE", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "__typename": "__EnumValue", + "name": "EMPIRE", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "__typename": "__EnumValue", + "name": "JEDI", + "description": "", + "isDeprecated": true, + "deprecationReason": "No longer supported" + } + ], + "possibleTypes": [] + }, + { + "__typename": "__Type", + "kind": "INTERFACE", + "name": "Character", + "description": "", + "fields": [ + { + "__typename": "__Field", + "name": "name", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "__typename": "__Field", + "name": "friends", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Character", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Human", + "ofType": null + }, + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Droid", + "ofType": null + } + ] + }, + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Human", + "description": "", + "fields": [ + { + "__typename": "__Field", + "name": "name", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "__typename": "__Field", + "name": "height", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "No longer supported" + }, + { + "__typename": "__Field", + "name": "friends", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Character", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [ + { + "__typename": "__Type", + "kind": "INTERFACE", + "name": "Character", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Droid", + "description": "", + "fields": [ + { + "__typename": "__Field", + "name": "name", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "__typename": "__Field", + "name": "primaryFunction", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "__typename": "__Field", + "name": "friends", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Character", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [ + { + "__typename": "__Type", + "kind": "INTERFACE", + "name": "Character", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "kind": "INTERFACE", + "name": "Vehicle", + "description": "", + "fields": [ + { + "__typename": "__Field", + "name": "length", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Starship", + "ofType": null + } + ] + }, + { + "__typename": "__Type", + "kind": "OBJECT", + "name": "Starship", + "description": "", + "fields": [ + { + "__typename": "__Field", + "name": "name", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "__typename": "__Field", + "name": "length", + "description": "", + "args": [], + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": [], + "interfaces": [ + { + "__typename": "__Type", + "kind": "INTERFACE", + "name": "Vehicle", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "kind": "SCALAR", + "name": "Int", + "description": "The 'Int' scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "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": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "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": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "kind": "SCALAR", + "name": "Boolean", + "description": "The 'Boolean' scalar type represents 'true' or 'false' .", + "fields": null, + "inputFields": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + }, + { + "__typename": "__Type", + "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": [], + "interfaces": [], + "enumValues": null, + "possibleTypes": [] + } + ], + "directives": [ + { + "__typename": "__Directive", + "name": "include", + "description": "Directs the executor to include this field or fragment only when the argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "__typename": "__InputValue", + "name": "if", + "description": "Included when true.", + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ] + }, + { + "__typename": "__Directive", + "name": "skip", + "description": "Directs the executor to skip this field or fragment when the argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "__typename": "__InputValue", + "name": "if", + "description": "Skipped when true.", + "type": { + "__typename": "__Type", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ] + }, + { + "__typename": "__Directive", + "name": "deprecated", + "description": "Marks an element of a GraphQL schema as no longer supported.", + "locations": [ + "FIELD_DEFINITION", + "ENUM_VALUE" + ], + "args": [ + { + "__typename": "__InputValue", + "name": "reason", + "description": "Explains why this element was deprecated, usually also including a suggestion\n for how to access supported similar data. Formatted in\n [Markdown](https://daringfireball.net/projects/markdown/).", + "type": { + "__typename": "__Type", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"No longer supported\"" + } + ] + } + ] + } + } +} \ No newline at end of file diff --git a/v2/pkg/engine/datasource/introspection_datasource/config_factory.go b/v2/pkg/engine/datasource/introspection_datasource/config_factory.go index 0d4cf411b5..0ed8a71e60 100644 --- a/v2/pkg/engine/datasource/introspection_datasource/config_factory.go +++ b/v2/pkg/engine/datasource/introspection_datasource/config_factory.go @@ -91,23 +91,23 @@ func (f *IntrospectionConfigFactory) buildRootDataSourceConfiguration() (plan.Da ChildNodes: []plan.TypeField{ { TypeName: "__Schema", - FieldNames: []string{"queryType", "mutationType", "subscriptionType", "types", "directives"}, + FieldNames: []string{"queryType", "mutationType", "subscriptionType", "types", "directives", "__typename"}, }, { TypeName: "__Type", - FieldNames: []string{"kind", "name", "description", "interfaces", "possibleTypes", "inputFields", "ofType"}, + FieldNames: []string{"kind", "name", "description", "interfaces", "possibleTypes", "inputFields", "ofType", "__typename"}, }, { TypeName: "__Field", - FieldNames: []string{"name", "description", "args", "type", "isDeprecated", "deprecationReason"}, + FieldNames: []string{"name", "description", "args", "type", "isDeprecated", "deprecationReason", "__typename"}, }, { TypeName: "__InputValue", - FieldNames: []string{"name", "description", "type", "defaultValue"}, + FieldNames: []string{"name", "description", "type", "defaultValue", "__typename"}, }, { TypeName: "__Directive", - FieldNames: []string{"name", "description", "locations", "args", "isRepeatable"}, + FieldNames: []string{"name", "description", "locations", "args", "isRepeatable", "__typename"}, }, }, }, @@ -129,15 +129,15 @@ func (f *IntrospectionConfigFactory) buildFieldsConfiguration() (plan.DataSource ChildNodes: []plan.TypeField{ { TypeName: "__Type", - FieldNames: []string{"kind", "name", "description", "interfaces", "possibleTypes", "inputFields", "ofType"}, + FieldNames: []string{"kind", "name", "description", "interfaces", "possibleTypes", "inputFields", "ofType", "__typename"}, }, { TypeName: "__Field", - FieldNames: []string{"name", "description", "args", "type", "isDeprecated", "deprecationReason"}, + FieldNames: []string{"name", "description", "args", "type", "isDeprecated", "deprecationReason", "__typename"}, }, { TypeName: "__InputValue", - FieldNames: []string{"name", "description", "type", "defaultValue"}, + FieldNames: []string{"name", "description", "type", "defaultValue", "__typename"}, }, }, }, @@ -159,7 +159,7 @@ func (f *IntrospectionConfigFactory) buildEnumsConfiguration() (plan.DataSourceC ChildNodes: []plan.TypeField{ { TypeName: "__EnumValue", - FieldNames: []string{"name", "description", "isDeprecated", "deprecationReason"}, + FieldNames: []string{"name", "description", "isDeprecated", "deprecationReason", "__typename"}, }, }, }, @@ -168,7 +168,7 @@ func (f *IntrospectionConfigFactory) buildEnumsConfiguration() (plan.DataSourceC } func (f *IntrospectionConfigFactory) dataSourceConfigQueryTypeName() string { - if f.introspectionData.Schema.QueryType == nil || len(f.introspectionData.Schema.QueryType.Name) == 0 { + if len(f.introspectionData.Schema.QueryType.Name) == 0 { return "Query" } return f.introspectionData.Schema.QueryType.Name diff --git a/v2/pkg/engine/datasource/introspection_datasource/fixtures/enum_values_with_deprecated.golden b/v2/pkg/engine/datasource/introspection_datasource/fixtures/enum_values_with_deprecated.golden index 2b6a52bc05..ec5ad688ea 100644 --- a/v2/pkg/engine/datasource/introspection_datasource/fixtures/enum_values_with_deprecated.golden +++ b/v2/pkg/engine/datasource/introspection_datasource/fixtures/enum_values_with_deprecated.golden @@ -3,18 +3,21 @@ "name": "NEWHOPE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__EnumValue" }, { "name": "EMPIRE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__EnumValue" }, { "name": "JEDI", "description": "", "isDeprecated": true, - "deprecationReason": "No longer supported" + "deprecationReason": "No longer supported", + "__typename": "__EnumValue" } ] diff --git a/v2/pkg/engine/datasource/introspection_datasource/fixtures/enum_values_without_deprecated.golden b/v2/pkg/engine/datasource/introspection_datasource/fixtures/enum_values_without_deprecated.golden index c6004d0cff..26df129db5 100644 --- a/v2/pkg/engine/datasource/introspection_datasource/fixtures/enum_values_without_deprecated.golden +++ b/v2/pkg/engine/datasource/introspection_datasource/fixtures/enum_values_without_deprecated.golden @@ -3,12 +3,14 @@ "name": "NEWHOPE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__EnumValue" }, { "name": "EMPIRE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__EnumValue" } ] diff --git a/v2/pkg/engine/datasource/introspection_datasource/fixtures/fields_with_deprecated.golden b/v2/pkg/engine/datasource/introspection_datasource/fixtures/fields_with_deprecated.golden index 73cf230679..4060186dd1 100644 --- a/v2/pkg/engine/datasource/introspection_datasource/fixtures/fields_with_deprecated.golden +++ b/v2/pkg/engine/datasource/introspection_datasource/fixtures/fields_with_deprecated.golden @@ -6,10 +6,12 @@ "type": { "kind": "OBJECT", "name": "Droid", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": true, - "deprecationReason": "No longer supported" + "deprecationReason": "No longer supported", + "__typename": "__Field" }, { "name": "droid", @@ -24,18 +26,23 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { "kind": "OBJECT", "name": "Droid", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ] diff --git a/v2/pkg/engine/datasource/introspection_datasource/fixtures/fields_without_deprecated.golden b/v2/pkg/engine/datasource/introspection_datasource/fixtures/fields_without_deprecated.golden index 197680598c..192984c5a5 100644 --- a/v2/pkg/engine/datasource/introspection_datasource/fixtures/fields_without_deprecated.golden +++ b/v2/pkg/engine/datasource/introspection_datasource/fixtures/fields_without_deprecated.golden @@ -12,18 +12,23 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { "kind": "OBJECT", "name": "Droid", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ] diff --git a/v2/pkg/engine/datasource/introspection_datasource/fixtures/schema_introspection.golden b/v2/pkg/engine/datasource/introspection_datasource/fixtures/schema_introspection.golden index 402f19ef9e..7ef842b0bf 100644 --- a/v2/pkg/engine/datasource/introspection_datasource/fixtures/schema_introspection.golden +++ b/v2/pkg/engine/datasource/introspection_datasource/fixtures/schema_introspection.golden @@ -1,6 +1,60 @@ { "queryType": { - "name": "Query" + "kind": "OBJECT", + "name": "Query", + "description": "", + "fields": [ + { + "name": "me", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Droid", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": true, + "deprecationReason": "No longer supported", + "__typename": "__Field" + }, + { + "name": "droid", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "OBJECT", + "name": "Droid", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + } + ], + "inputFields": [], + "interfaces": [], + "possibleTypes": [], + "__typename": "__Type" }, "mutationType": null, "subscriptionType": null, @@ -11,7 +65,8 @@ "description": "", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "ENUM", @@ -19,7 +74,8 @@ "description": "", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -27,7 +83,8 @@ "description": "", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -35,7 +92,8 @@ "description": "The 'Int' scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -43,7 +101,8 @@ "description": "The 'Float' scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -51,7 +110,8 @@ "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.", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -59,7 +119,8 @@ "description": "The 'Boolean' scalar type represents 'true' or 'false' .", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -67,7 +128,8 @@ "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.", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" } ], "directives": [ @@ -89,13 +151,17 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "__Directive" }, { "name": "skip", @@ -115,13 +181,17 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "__Directive" }, { "name": "deprecated", @@ -137,12 +207,16 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": "\"No longer supported\"" + "defaultValue": "\"No longer supported\"", + "__typename": "__InputValue" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "__Directive" } - ] + ], + "__typename": "__Schema" } diff --git a/v2/pkg/engine/datasource/introspection_datasource/fixtures/schema_introspection_with_custom_root_operation_types.golden b/v2/pkg/engine/datasource/introspection_datasource/fixtures/schema_introspection_with_custom_root_operation_types.golden index e70041fade..338c33d77f 100644 --- a/v2/pkg/engine/datasource/introspection_datasource/fixtures/schema_introspection_with_custom_root_operation_types.golden +++ b/v2/pkg/engine/datasource/introspection_datasource/fixtures/schema_introspection_with_custom_root_operation_types.golden @@ -1,12 +1,133 @@ { "queryType": { - "name": "CustomQuery" + "kind": "OBJECT", + "name": "CustomQuery", + "description": "", + "fields": [ + { + "name": "me", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Droid", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": true, + "deprecationReason": "No longer supported", + "__typename": "__Field" + }, + { + "name": "droid", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "OBJECT", + "name": "Droid", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + } + ], + "inputFields": [], + "interfaces": [], + "possibleTypes": [], + "__typename": "__Type" }, "mutationType": { - "name": "CustomMutation" + "kind": "OBJECT", + "name": "CustomMutation", + "description": "", + "fields": [ + { + "name": "destroyDroid", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + } + ], + "inputFields": [], + "interfaces": [], + "possibleTypes": [], + "__typename": "__Type" }, "subscriptionType": { - "name": "CustomSubscription" + "kind": "OBJECT", + "name": "CustomSubscription", + "description": "", + "fields": [ + { + "name": "destroyedDroid", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Droid", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + } + ], + "inputFields": [], + "interfaces": [], + "possibleTypes": [], + "__typename": "__Type" }, "types": [ { @@ -15,7 +136,8 @@ "description": "", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -23,7 +145,8 @@ "description": "", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -31,7 +154,8 @@ "description": "", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "ENUM", @@ -39,7 +163,8 @@ "description": "", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -47,7 +172,8 @@ "description": "", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -55,7 +181,8 @@ "description": "The 'Int' scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -63,7 +190,8 @@ "description": "The 'Float' scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -71,7 +199,8 @@ "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.", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -79,7 +208,8 @@ "description": "The 'Boolean' scalar type represents 'true' or 'false' .", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -87,7 +217,8 @@ "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.", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" } ], "directives": [ @@ -109,13 +240,17 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "__Directive" }, { "name": "skip", @@ -135,13 +270,17 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "__Directive" }, { "name": "deprecated", @@ -157,12 +296,16 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": "\"No longer supported\"" + "defaultValue": "\"No longer supported\"", + "__typename": "__InputValue" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "__Directive" } - ] + ], + "__typename": "__Schema" } diff --git a/v2/pkg/engine/datasource/introspection_datasource/fixtures/type_introspection.golden b/v2/pkg/engine/datasource/introspection_datasource/fixtures/type_introspection.golden index 439f97b386..f7249df1a0 100644 --- a/v2/pkg/engine/datasource/introspection_datasource/fixtures/type_introspection.golden +++ b/v2/pkg/engine/datasource/introspection_datasource/fixtures/type_introspection.golden @@ -4,5 +4,6 @@ "description": "", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" } diff --git a/v2/pkg/engine/datasource/introspection_datasource/source.go b/v2/pkg/engine/datasource/introspection_datasource/source.go index 2149c3ba87..a79aacd4f9 100644 --- a/v2/pkg/engine/datasource/introspection_datasource/source.go +++ b/v2/pkg/engine/datasource/introspection_datasource/source.go @@ -42,10 +42,10 @@ func (s *Source) LoadWithFiles(ctx context.Context, input []byte, files []httpcl } func (s *Source) schemaWithoutTypeInfo() introspection.Schema { - types := make([]introspection.FullType, 0, len(s.introspectionData.Schema.Types)) + types := make([]*introspection.FullType, 0, len(s.introspectionData.Schema.Types)) for i := range s.introspectionData.Schema.Types { - types = append(types, s.typeWithoutFieldAndEnumValues(&s.introspectionData.Schema.Types[i])) + types = append(types, s.typeWithoutFieldAndEnumValues(s.introspectionData.Schema.Types[i])) } return introspection.Schema{ @@ -54,6 +54,7 @@ func (s *Source) schemaWithoutTypeInfo() introspection.Schema { SubscriptionType: s.introspectionData.Schema.SubscriptionType, Types: types, Directives: s.introspectionData.Schema.Directives, + TypeName: s.introspectionData.Schema.TypeName, } } @@ -62,12 +63,7 @@ func (s *Source) typeInfo(typeName *string) *introspection.FullType { return nil } - for _, fullType := range s.introspectionData.Schema.Types { - if fullType.Name == *typeName { - return &fullType - } - } - return nil + return s.introspectionData.Schema.TypeByName(*typeName) } func (s *Source) writeNull(w io.Writer) error { @@ -84,12 +80,12 @@ func (s *Source) singleType(w io.Writer, typeName *string) error { return json.NewEncoder(w).Encode(s.typeWithoutFieldAndEnumValues(typeInfo)) } -func (s *Source) typeWithoutFieldAndEnumValues(typeInfo *introspection.FullType) introspection.FullType { +func (s *Source) typeWithoutFieldAndEnumValues(typeInfo *introspection.FullType) *introspection.FullType { typeInfoCopy := *typeInfo typeInfoCopy.Fields = nil typeInfoCopy.EnumValues = nil - return typeInfoCopy + return &typeInfoCopy } func (s *Source) fieldsForType(w io.Writer, typeName *string, includeDeprecated bool) error { diff --git a/v2/pkg/introspection/converter.go b/v2/pkg/introspection/converter.go index eddbf65b0f..22a37ea884 100644 --- a/v2/pkg/introspection/converter.go +++ b/v2/pkg/introspection/converter.go @@ -53,7 +53,7 @@ func (j *JsonConverter) importSchema() error { return nil } -func (j *JsonConverter) importFullType(fullType FullType) (err error) { +func (j *JsonConverter) importFullType(fullType *FullType) (err error) { switch fullType.Kind { case SCALAR: j.doc.ImportScalarTypeDefinition(fullType.Name, fullType.Description) @@ -71,7 +71,7 @@ func (j *JsonConverter) importFullType(fullType FullType) (err error) { return } -func (j *JsonConverter) importObject(fullType FullType) error { +func (j *JsonConverter) importObject(fullType *FullType) error { fieldRefs, err := j.importFields(fullType.Fields) if err != nil { return err @@ -91,7 +91,7 @@ func (j *JsonConverter) importObject(fullType FullType) error { return nil } -func (j *JsonConverter) importInterface(fullType FullType) error { +func (j *JsonConverter) importInterface(fullType *FullType) error { fieldRefs, err := j.importFields(fullType.Fields) if err != nil { return err @@ -120,7 +120,7 @@ func (j *JsonConverter) importDirective(directive Directive) error { return nil } -func (j *JsonConverter) importInputObject(fullType FullType) error { +func (j *JsonConverter) importInputObject(fullType *FullType) error { argRefs, err := j.importInputFields(fullType.InputFields) if err != nil { return err @@ -134,7 +134,7 @@ func (j *JsonConverter) importInputObject(fullType FullType) error { return nil } -func (j *JsonConverter) importEnum(fullType FullType) { +func (j *JsonConverter) importEnum(fullType *FullType) { valueRefs := make([]int, len(fullType.EnumValues)) for i := 0; i < len(valueRefs); i++ { var directiveRefs []int @@ -155,7 +155,7 @@ func (j *JsonConverter) importEnum(fullType FullType) { valueRefs) } -func (j *JsonConverter) importUnion(fullType FullType) error { +func (j *JsonConverter) importUnion(fullType *FullType) error { typeRefs := make([]int, len(fullType.PossibleTypes)) for i := 0; i < len(typeRefs); i++ { typeRefs[i] = j.importType(fullType.PossibleTypes[i]) diff --git a/v2/pkg/introspection/fixtures/interfaces_implementing_interfaces.golden b/v2/pkg/introspection/fixtures/interfaces_implementing_interfaces.golden index bb81e82cb8..2bc1782774 100644 --- a/v2/pkg/introspection/fixtures/interfaces_implementing_interfaces.golden +++ b/v2/pkg/introspection/fixtures/interfaces_implementing_interfaces.golden @@ -1,6 +1,14 @@ { "__schema": { - "queryType": null, + "queryType": { + "kind": "SCALAR", + "name": "", + "description": "", + "inputFields": null, + "interfaces": null, + "possibleTypes": null, + "__typename": "" + }, "mutationType": null, "subscriptionType": null, "types": [ @@ -19,16 +27,20 @@ "ofType": { "kind": "SCALAR", "name": null, - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "INTERFACE", @@ -45,11 +57,14 @@ "ofType": { "kind": "SCALAR", "name": null, - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "fieldTwo", @@ -61,11 +76,14 @@ "ofType": { "kind": "SCALAR", "name": null, - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], @@ -73,10 +91,12 @@ { "kind": "INTERFACE", "name": "BaseInterface", - "ofType": null + "ofType": null, + "__typename": "__Type" } ], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "INTERFACE", @@ -93,11 +113,14 @@ "ofType": { "kind": "SCALAR", "name": null, - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "fieldTwo", @@ -109,11 +132,14 @@ "ofType": { "kind": "SCALAR", "name": null, - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "fieldThree", @@ -125,11 +151,14 @@ "ofType": { "kind": "SCALAR", "name": null, - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], @@ -137,15 +166,18 @@ { "kind": "INTERFACE", "name": "SecondInterface", - "ofType": null + "ofType": null, + "__typename": "__Type" }, { "kind": "INTERFACE", "name": "BaseInterface", - "ofType": null + "ofType": null, + "__typename": "__Type" } ], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "INTERFACE", @@ -162,16 +194,20 @@ "ofType": { "kind": "SCALAR", "name": null, - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "INTERFACE", @@ -188,11 +224,33 @@ "ofType": { "kind": "SCALAR", "name": null, - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" + }, + { + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": null, + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], @@ -200,10 +258,12 @@ { "kind": "INTERFACE", "name": "IDType", - "ofType": null + "ofType": null, + "__typename": "__Type" } ], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "INTERFACE", @@ -220,11 +280,52 @@ "ofType": { "kind": "SCALAR", "name": null, - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + }, + { + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": null, + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + }, + { + "name": "deleted", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": null, + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], @@ -232,17 +333,21 @@ { "kind": "INTERFACE", "name": "SoftDelete", - "ofType": null + "ofType": null, + "__typename": "__Type" }, { "kind": "INTERFACE", "name": "IDType", - "ofType": null + "ofType": null, + "__typename": "__Type" } ], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" } ], - "directives": [] + "directives": [], + "__typename": "__Schema" } } \ No newline at end of file diff --git a/v2/pkg/introspection/fixtures/starwars_introspected.golden b/v2/pkg/introspection/fixtures/starwars_introspected.golden index d936078935..c2d6928d39 100644 --- a/v2/pkg/introspection/fixtures/starwars_introspected.golden +++ b/v2/pkg/introspection/fixtures/starwars_introspected.golden @@ -1,13 +1,332 @@ { "__schema": { "queryType": { - "name": "Query" + "kind": "OBJECT", + "name": "Query", + "description": "The query type, represents all of the entry points into our object graph", + "fields": [ + { + "name": "hero", + "description": "", + "args": [ + { + "name": "episode", + "description": "", + "type": { + "kind": "ENUM", + "name": "Episode", + "ofType": null, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "INTERFACE", + "name": "Character", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + }, + { + "name": "reviews", + "description": "", + "args": [ + { + "name": "episode", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Episode", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Review", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + }, + { + "name": "search", + "description": "", + "args": [ + { + "name": "text", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "UNION", + "name": "SearchResult", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + }, + { + "name": "character", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "INTERFACE", + "name": "Character", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + }, + { + "name": "droid", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "OBJECT", + "name": "Droid", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + }, + { + "name": "human", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "OBJECT", + "name": "Human", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": true, + "deprecationReason": "skynet wins!", + "__typename": "__Field" + }, + { + "name": "starship", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "OBJECT", + "name": "Starship", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + } + ], + "inputFields": [], + "interfaces": [], + "possibleTypes": [], + "__typename": "__Type" }, "mutationType": { - "name": "Mutation" + "kind": "OBJECT", + "name": "Mutation", + "description": "The mutation type, represents all updates we can make to our data", + "fields": [ + { + "name": "createReview", + "description": "", + "args": [ + { + "name": "episode", + "description": "", + "type": { + "kind": "ENUM", + "name": "Episode", + "ofType": null, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + }, + { + "name": "review", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReviewInput", + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "OBJECT", + "name": "Review", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + } + ], + "inputFields": [], + "interfaces": [], + "possibleTypes": [], + "__typename": "__Type" }, "subscriptionType": { - "name": "Subscription" + "kind": "OBJECT", + "name": "Subscription", + "description": "The subscription type, represents all subscriptions we can make to our data", + "fields": [ + { + "name": "reviewAdded", + "description": "", + "args": [ + { + "name": "episode", + "description": "", + "type": { + "kind": "ENUM", + "name": "Episode", + "ofType": null, + "__typename": "__Type" + }, + "defaultValue": null, + "__typename": "__InputValue" + } + ], + "type": { + "kind": "OBJECT", + "name": "Review", + "ofType": null, + "__typename": "__Type" + }, + "isDeprecated": false, + "deprecationReason": null, + "__typename": "__Field" + } + ], + "inputFields": [], + "interfaces": [], + "possibleTypes": [], + "__typename": "__Type" }, "types": [ { @@ -25,18 +344,22 @@ "type": { "kind": "ENUM", "name": "Episode", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { "kind": "INTERFACE", "name": "Character", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "reviews", @@ -51,10 +374,13 @@ "ofType": { "kind": "ENUM", "name": "Episode", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { @@ -63,11 +389,14 @@ "ofType": { "kind": "OBJECT", "name": "Review", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "search", @@ -79,9 +408,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { @@ -90,11 +421,14 @@ "ofType": { "kind": "UNION", "name": "SearchResult", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "character", @@ -109,19 +443,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { "kind": "INTERFACE", "name": "Character", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "droid", @@ -136,19 +475,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { "kind": "OBJECT", "name": "Droid", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "human", @@ -163,19 +507,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { "kind": "OBJECT", "name": "Human", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": true, - "deprecationReason": "skynet wins!" + "deprecationReason": "skynet wins!", + "__typename": "__Field" }, { "name": "starship", @@ -190,24 +539,30 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -224,9 +579,11 @@ "type": { "kind": "ENUM", "name": "Episode", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" }, { "name": "review", @@ -237,24 +594,30 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "ReviewInput", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { "kind": "OBJECT", "name": "Review", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -271,23 +634,28 @@ "type": { "kind": "ENUM", "name": "Episode", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { "kind": "OBJECT", "name": "Review", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "ENUM", @@ -300,22 +668,26 @@ "name": "NEWHOPE", "description": "Star Wars Episode IV: A New Hope, released in 1977.", "isDeprecated": true, - "deprecationReason": "No longer supported" + "deprecationReason": "No longer supported", + "__typename": "__EnumValue" }, { "name": "EMPIRE", "description": "Star Wars Episode V: The Empire Strikes Back, released in 1980.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__EnumValue" }, { "name": "JEDI", "description": "Star Wars Episode VI: Return of the Jedi, released in 1983.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__EnumValue" } ], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "INTERFACE", @@ -332,11 +704,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "name", @@ -348,11 +723,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "friends", @@ -364,11 +742,14 @@ "ofType": { "kind": "INTERFACE", "name": "Character", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "friendsConnection", @@ -380,9 +761,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" }, { "name": "after", @@ -390,9 +773,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { @@ -401,11 +786,14 @@ "ofType": { "kind": "OBJECT", "name": "FriendsConnection", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "appearsIn", @@ -420,12 +808,16 @@ "ofType": { "kind": "ENUM", "name": "Episode", - "ofType": null - } - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], @@ -434,14 +826,17 @@ { "kind": "OBJECT", "name": "Human", - "ofType": null + "ofType": null, + "__typename": "__Type" }, { "kind": "OBJECT", "name": "Droid", - "ofType": null + "ofType": null, + "__typename": "__Type" } - ] + ], + "__typename": "__Type" }, { "kind": "ENUM", @@ -454,16 +849,19 @@ "name": "METER", "description": "The standard unit around the world", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__EnumValue" }, { "name": "FOOT", "description": "Primarily used in the United States", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__EnumValue" } ], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -480,11 +878,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "name", @@ -496,11 +897,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "homePlanet", @@ -509,10 +913,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "height", @@ -524,18 +930,22 @@ "type": { "kind": "ENUM", "name": "LengthUnit", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": "METER" + "defaultValue": "METER", + "__typename": "__InputValue" } ], "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "mass", @@ -544,10 +954,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "friends", @@ -559,11 +971,14 @@ "ofType": { "kind": "INTERFACE", "name": "Character", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "friendsConnection", @@ -575,9 +990,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" }, { "name": "after", @@ -585,9 +1002,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { @@ -596,11 +1015,14 @@ "ofType": { "kind": "OBJECT", "name": "FriendsConnection", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "appearsIn", @@ -615,12 +1037,16 @@ "ofType": { "kind": "ENUM", "name": "Episode", - "ofType": null - } - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "starships", @@ -632,11 +1058,14 @@ "ofType": { "kind": "OBJECT", "name": "Starship", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], @@ -644,10 +1073,12 @@ { "kind": "INTERFACE", "name": "Character", - "ofType": null + "ofType": null, + "__typename": "__Type" } ], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -664,11 +1095,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "name", @@ -680,11 +1114,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "friends", @@ -696,11 +1133,14 @@ "ofType": { "kind": "INTERFACE", "name": "Character", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "friendsConnection", @@ -712,9 +1152,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" }, { "name": "after", @@ -722,9 +1164,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "type": { @@ -733,11 +1177,14 @@ "ofType": { "kind": "OBJECT", "name": "FriendsConnection", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "appearsIn", @@ -752,12 +1199,16 @@ "ofType": { "kind": "ENUM", "name": "Episode", - "ofType": null - } - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "primaryFunction", @@ -766,10 +1217,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], @@ -777,10 +1230,12 @@ { "kind": "INTERFACE", "name": "Character", - "ofType": null + "ofType": null, + "__typename": "__Type" } ], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -794,10 +1249,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "edges", @@ -809,11 +1266,14 @@ "ofType": { "kind": "OBJECT", "name": "FriendsEdge", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "friends", @@ -825,11 +1285,14 @@ "ofType": { "kind": "INTERFACE", "name": "Character", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "pageInfo", @@ -841,16 +1304,20 @@ "ofType": { "kind": "OBJECT", "name": "PageInfo", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -867,11 +1334,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "node", @@ -880,15 +1350,18 @@ "type": { "kind": "INTERFACE", "name": "Character", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -902,10 +1375,12 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "endCursor", @@ -914,10 +1389,12 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "hasNextPage", @@ -929,16 +1406,20 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -952,10 +1433,12 @@ "type": { "kind": "ENUM", "name": "Episode", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "stars", @@ -967,11 +1450,14 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "commentary", @@ -980,15 +1466,18 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "INPUT_OBJECT", @@ -1004,10 +1493,13 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" }, { "name": "commentary", @@ -1015,9 +1507,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" }, { "name": "favorite_color", @@ -1025,13 +1519,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "ColorInput", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "INPUT_OBJECT", @@ -1047,10 +1544,13 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" }, { "name": "green", @@ -1061,10 +1561,13 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" }, { "name": "blue", @@ -1075,14 +1578,18 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "OBJECT", @@ -1099,11 +1606,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "name", @@ -1115,11 +1625,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" }, { "name": "oldName", @@ -1128,10 +1641,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": true, - "deprecationReason": "why not?" + "deprecationReason": "why not?", + "__typename": "__Field" }, { "name": "length", @@ -1143,23 +1658,28 @@ "type": { "kind": "ENUM", "name": "LengthUnit", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": "METER" + "defaultValue": "METER", + "__typename": "__InputValue" } ], "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "__Type" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "__Field" } ], "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "UNION", @@ -1171,19 +1691,23 @@ { "kind": "OBJECT", "name": "Human", - "ofType": null + "ofType": null, + "__typename": "__Type" }, { "kind": "OBJECT", "name": "Droid", - "ofType": null + "ofType": null, + "__typename": "__Type" }, { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "__Type" } - ] + ], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -1191,7 +1715,8 @@ "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -1199,7 +1724,8 @@ "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -1207,7 +1733,8 @@ "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.", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -1215,7 +1742,8 @@ "description": "The `Boolean` scalar type represents `true` or `false` .", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" }, { "kind": "SCALAR", @@ -1223,7 +1751,8 @@ "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.", "inputFields": [], "interfaces": [], - "possibleTypes": [] + "possibleTypes": [], + "__typename": "__Type" } ], "directives": [ @@ -1245,13 +1774,17 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "__Directive" }, { "name": "skip", @@ -1271,13 +1804,17 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "__Directive" }, { "name": "deprecated", @@ -1293,12 +1830,15 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "__Type" }, - "defaultValue": "\"No longer supported\"" + "defaultValue": "\"No longer supported\"", + "__typename": "__InputValue" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "__Directive" }, { "name": "delegateField", @@ -1317,14 +1857,19 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "__Type" + }, + "__typename": "__Type" }, - "defaultValue": null + "defaultValue": null, + "__typename": "__InputValue" } ], - "isRepeatable": true + "isRepeatable": true, + "__typename": "__Directive" } - ] + ], + "__typename": "__Schema" } } \ No newline at end of file diff --git a/v2/pkg/introspection/generator.go b/v2/pkg/introspection/generator.go index 3ad1a28d62..b913ce6bc3 100644 --- a/v2/pkg/introspection/generator.go +++ b/v2/pkg/introspection/generator.go @@ -26,7 +26,7 @@ func NewGenerator() *Generator { Walker: &walker, } - walker.RegisterEnterDocumentVisitor(&visitor) + walker.RegisterDocumentVisitor(&visitor) walker.RegisterEnterDirectiveLocationVisitor(&visitor) walker.RegisterEnterInputValueDefinitionVisitor(&visitor) walker.RegisterEnterRootOperationTypeDefinitionVisitor(&visitor) @@ -59,15 +59,33 @@ type introspectionVisitor struct { *astvisitor.Walker definition *ast.Document data *Data - currentType FullType + currentType *FullType currentField Field currentDirective Directive + + queryTypeName string + mutationTypeName string + subscriptionTypeName string } func (i *introspectionVisitor) EnterDocument(operation, definition *ast.Document) { i.data.Schema = NewSchema() } +func (i *introspectionVisitor) LeaveDocument(operation, definition *ast.Document) { + if i.queryTypeName != "" { + i.data.Schema.QueryType = *i.data.Schema.TypeByName(i.queryTypeName) + } + + if i.mutationTypeName != "" { + i.data.Schema.MutationType = i.data.Schema.TypeByName(i.mutationTypeName) + } + + if i.subscriptionTypeName != "" { + i.data.Schema.SubscriptionType = i.data.Schema.TypeByName(i.subscriptionTypeName) + } +} + func (i *introspectionVisitor) EnterObjectTypeDefinition(ref int) { i.currentType = NewFullType() i.currentType.Name = i.definition.ObjectTypeDefinitionNameString(ref) @@ -76,8 +94,9 @@ func (i *introspectionVisitor) EnterObjectTypeDefinition(ref int) { for _, typeRef := range i.definition.ObjectTypeDefinitions[ref].ImplementsInterfaces.Refs { name := i.definition.TypeNameString(typeRef) i.currentType.Interfaces = append(i.currentType.Interfaces, TypeRef{ - Kind: INTERFACE, - Name: &name, + Kind: INTERFACE, + Name: &name, + TypeName: "__Type", }) } } @@ -86,7 +105,7 @@ func (i *introspectionVisitor) LeaveObjectTypeDefinition(ref int) { if strings.HasPrefix(i.currentType.Name, "__") { return } - i.data.Schema.Types = append(i.data.Schema.Types, i.currentType) + i.data.Schema.AddType(i.currentType) } func (i *introspectionVisitor) EnterFieldDefinition(ref int) { @@ -129,6 +148,7 @@ func (i *introspectionVisitor) EnterInputValueDefinition(ref int) { Description: i.definition.InputValueDefinitionDescriptionString(ref), Type: i.TypeRef(i.definition.InputValueDefinitionType(ref)), DefaultValue: defaultValue, + TypeName: "__InputValue", } switch i.Ancestors[len(i.Ancestors)-1].Kind { @@ -152,8 +172,9 @@ func (i *introspectionVisitor) EnterInterfaceTypeDefinition(ref int) { if i.definition.ObjectTypeDefinitionImplementsInterface(objectTypeDefRef, interfaceNameBytes) { objectName := i.definition.ObjectTypeDefinitionNameString(objectTypeDefRef) i.currentType.PossibleTypes = append(i.currentType.PossibleTypes, TypeRef{ - Kind: OBJECT, - Name: &objectName, + Kind: OBJECT, + Name: &objectName, + TypeName: "__Type", }) } } @@ -164,8 +185,9 @@ func (i *introspectionVisitor) EnterInterfaceTypeDefinition(ref int) { if i.currentType.Name == interfaceTypeExtensionName { implementedInterfaceName := i.definition.TypeNameString(implementedInterfaceRef) i.currentType.Interfaces = append(i.currentType.Interfaces, TypeRef{ - Kind: INTERFACE, - Name: &implementedInterfaceName, + Kind: INTERFACE, + Name: &implementedInterfaceName, + TypeName: "__Type", }) } } @@ -174,8 +196,9 @@ func (i *introspectionVisitor) EnterInterfaceTypeDefinition(ref int) { for _, implementedInterfaceRef := range i.definition.InterfaceTypeDefinitions[ref].ImplementsInterfaces.Refs { implementedInterfaceName := i.definition.TypeNameString(implementedInterfaceRef) i.currentType.Interfaces = append(i.currentType.Interfaces, TypeRef{ - Kind: INTERFACE, - Name: &implementedInterfaceName, + Kind: INTERFACE, + Name: &implementedInterfaceName, + TypeName: "__Type", }) } } @@ -184,7 +207,7 @@ func (i *introspectionVisitor) LeaveInterfaceTypeDefinition(ref int) { if strings.HasPrefix(i.currentType.Name, "__") { return } - i.data.Schema.Types = append(i.data.Schema.Types, i.currentType) + i.data.Schema.AddType(i.currentType) } func (i *introspectionVisitor) EnterScalarTypeDefinition(ref int) { @@ -192,7 +215,7 @@ func (i *introspectionVisitor) EnterScalarTypeDefinition(ref int) { typeDefinition.Kind = SCALAR typeDefinition.Name = i.definition.ScalarTypeDefinitionNameString(ref) typeDefinition.Description = i.definition.ScalarTypeDefinitionDescriptionString(ref) - i.data.Schema.Types = append(i.data.Schema.Types, typeDefinition) + i.data.Schema.AddType(typeDefinition) } func (i *introspectionVisitor) EnterUnionTypeDefinition(ref int) { @@ -206,14 +229,15 @@ func (i *introspectionVisitor) LeaveUnionTypeDefinition(ref int) { if strings.HasPrefix(i.currentType.Name, "__") { return } - i.data.Schema.Types = append(i.data.Schema.Types, i.currentType) + i.data.Schema.AddType(i.currentType) } func (i *introspectionVisitor) EnterUnionMemberType(ref int) { name := i.definition.TypeNameString(ref) i.currentType.PossibleTypes = append(i.currentType.PossibleTypes, TypeRef{ - Kind: OBJECT, - Name: &name, + Kind: OBJECT, + Name: &name, + TypeName: "__Type", }) } @@ -228,13 +252,14 @@ func (i *introspectionVisitor) LeaveEnumTypeDefinition(ref int) { if strings.HasPrefix(i.currentType.Name, "__") { return } - i.data.Schema.Types = append(i.data.Schema.Types, i.currentType) + i.data.Schema.AddType(i.currentType) } func (i *introspectionVisitor) LeaveEnumValueDefinition(ref int) { enumValue := EnumValue{ Name: i.definition.EnumValueDefinitionNameString(ref), Description: i.definition.EnumValueDefinitionDescriptionString(ref), + TypeName: "__EnumValue", } if i.definition.EnumValueDefinitionHasDirectives(ref) { @@ -256,7 +281,7 @@ func (i *introspectionVisitor) EnterInputObjectTypeDefinition(ref int) { } func (i *introspectionVisitor) LeaveInputObjectTypeDefinition(ref int) { - i.data.Schema.Types = append(i.data.Schema.Types, i.currentType) + i.data.Schema.AddType(i.currentType) } func (i *introspectionVisitor) EnterDirectiveDefinition(ref int) { @@ -277,17 +302,12 @@ func (i *introspectionVisitor) EnterDirectiveLocation(location ast.DirectiveLoca func (i *introspectionVisitor) EnterRootOperationTypeDefinition(ref int) { switch i.definition.RootOperationTypeDefinitions[ref].OperationType { case ast.OperationTypeQuery: - i.data.Schema.QueryType = &TypeName{ - Name: i.definition.Input.ByteSliceString(i.definition.RootOperationTypeDefinitions[ref].NamedType.Name), - } + i.queryTypeName = i.definition.Input.ByteSliceString(i.definition.RootOperationTypeDefinitions[ref].NamedType.Name) case ast.OperationTypeMutation: - i.data.Schema.MutationType = &TypeName{ - Name: i.definition.Input.ByteSliceString(i.definition.RootOperationTypeDefinitions[ref].NamedType.Name), - } + i.mutationTypeName = i.definition.Input.ByteSliceString(i.definition.RootOperationTypeDefinitions[ref].NamedType.Name) case ast.OperationTypeSubscription: - i.data.Schema.SubscriptionType = &TypeName{ - Name: i.definition.Input.ByteSliceString(i.definition.RootOperationTypeDefinitions[ref].NamedType.Name), - } + i.subscriptionTypeName = i.definition.Input.ByteSliceString(i.definition.RootOperationTypeDefinitions[ref].NamedType.Name) + default: } } @@ -297,7 +317,7 @@ func (i *introspectionVisitor) TypeRef(typeRef int) TypeRef { name := i.definition.TypeNameBytes(typeRef) node, exists := i.definition.Index.FirstNodeByNameBytes(name) if !exists { - return TypeRef{} + return TypeRef{TypeName: "__Type"} } var typeKind __TypeKind switch node.Kind { @@ -316,23 +336,26 @@ func (i *introspectionVisitor) TypeRef(typeRef int) TypeRef { } nameStr := unsafebytes.BytesToString(name) return TypeRef{ - Kind: typeKind, - Name: &nameStr, + Kind: typeKind, + Name: &nameStr, + TypeName: "__Type", } case ast.TypeKindNonNull: ofType := i.TypeRef(i.definition.Types[typeRef].OfType) return TypeRef{ - Kind: NONNULL, - OfType: &ofType, + Kind: NONNULL, + OfType: &ofType, + TypeName: "__Type", } case ast.TypeKindList: ofType := i.TypeRef(i.definition.Types[typeRef].OfType) return TypeRef{ - Kind: LIST, - OfType: &ofType, + Kind: LIST, + OfType: &ofType, + TypeName: "__Type", } default: - return TypeRef{} + return TypeRef{TypeName: "__Type"} } } diff --git a/v2/pkg/introspection/introspection.go b/v2/pkg/introspection/introspection.go index a463d9d878..e049f15484 100644 --- a/v2/pkg/introspection/introspection.go +++ b/v2/pkg/introspection/introspection.go @@ -12,17 +12,28 @@ type Data struct { } type Schema struct { - QueryType *TypeName `json:"queryType"` - MutationType *TypeName `json:"mutationType"` - SubscriptionType *TypeName `json:"subscriptionType"` - Types []FullType `json:"types"` + QueryType FullType `json:"queryType"` + MutationType *FullType `json:"mutationType"` + SubscriptionType *FullType `json:"subscriptionType"` + Types []*FullType `json:"types"` Directives []Directive `json:"directives"` + TypeName string `json:"__typename"` + fullTypeMap map[string]*FullType +} + +func (s *Schema) AddType(t *FullType) { + s.Types = append(s.Types, t) + s.fullTypeMap[t.Name] = t +} + +func (s *Schema) TypeByName(name string) *FullType { + fullType := s.fullTypeMap[name] + return fullType } func (s *Schema) TypeNames() (query, mutation, subscription string) { - if s.QueryType != nil { - query = s.QueryType.Name - } + query = s.QueryType.Name + if s.MutationType != nil { mutation = s.MutationType.Name } @@ -34,15 +45,13 @@ func (s *Schema) TypeNames() (query, mutation, subscription string) { func NewSchema() Schema { return Schema{ - Types: make([]FullType, 0), - Directives: make([]Directive, 0), + Types: make([]*FullType, 0), + Directives: make([]Directive, 0), + TypeName: "__Schema", + fullTypeMap: make(map[string]*FullType), } } -type TypeName struct { - Name string `json:"name"` -} - type FullType struct { Kind __TypeKind `json:"kind"` Name string `json:"name"` @@ -57,15 +66,17 @@ type FullType struct { EnumValues []EnumValue `json:"enumValues,omitempty"` // not empty for __TypeKind INTERFACE and UNION only PossibleTypes []TypeRef `json:"possibleTypes"` + TypeName string `json:"__typename"` } -func NewFullType() FullType { - return FullType{ +func NewFullType() *FullType { + return &FullType{ Fields: make([]Field, 0), InputFields: make([]InputValue, 0), Interfaces: make([]TypeRef, 0), EnumValues: make([]EnumValue, 0), PossibleTypes: make([]TypeRef, 0), + TypeName: "__Type", } } @@ -105,9 +116,10 @@ func (x __TypeKind) MarshalJSON() ([]byte, error) { } type TypeRef struct { - Kind __TypeKind `json:"kind"` - Name *string `json:"name"` - OfType *TypeRef `json:"ofType"` + Kind __TypeKind `json:"kind"` + Name *string `json:"name"` + OfType *TypeRef `json:"ofType"` + TypeName string `json:"__typename"` } type Field struct { @@ -117,11 +129,13 @@ type Field struct { Type TypeRef `json:"type"` IsDeprecated bool `json:"isDeprecated"` DeprecationReason *string `json:"deprecationReason"` + TypeName string `json:"__typename"` } func NewField() Field { return Field{ - Args: make([]InputValue, 0), + Args: make([]InputValue, 0), + TypeName: "__Field", } } @@ -130,6 +144,7 @@ type EnumValue struct { Description string `json:"description"` IsDeprecated bool `json:"isDeprecated"` DeprecationReason *string `json:"deprecationReason"` + TypeName string `json:"__typename"` } type InputValue struct { @@ -137,6 +152,7 @@ type InputValue struct { Description string `json:"description"` Type TypeRef `json:"type"` DefaultValue *string `json:"defaultValue"` + TypeName string `json:"__typename"` } type Directive struct { @@ -145,11 +161,13 @@ type Directive struct { Locations []string `json:"locations"` Args []InputValue `json:"args"` IsRepeatable bool `json:"isRepeatable"` + TypeName string `json:"__typename"` } func NewDirective() Directive { return Directive{ Locations: make([]string, 0), Args: make([]InputValue, 0), + TypeName: "__Directive", } } diff --git a/v2/pkg/introspection/testdata/out_swapi_introspection_response.json b/v2/pkg/introspection/testdata/out_swapi_introspection_response.json index 1394a63413..ece5a58728 100755 --- a/v2/pkg/introspection/testdata/out_swapi_introspection_response.json +++ b/v2/pkg/introspection/testdata/out_swapi_introspection_response.json @@ -1,13 +1,31 @@ { "__schema": { "queryType": { - "name": "Query" + "kind": "SCALAR", + "name": "Query", + "description": "", + "inputFields": null, + "interfaces": null, + "possibleTypes": null, + "__typename": "" }, "mutationType": { - "name": "Mutation" + "kind": "SCALAR", + "name": "Mutation", + "description": "", + "inputFields": null, + "interfaces": null, + "possibleTypes": null, + "__typename": "" }, "subscriptionType": { - "name": "Subscription" + "kind": "SCALAR", + "name": "Subscription", + "description": "", + "inputFields": null, + "interfaces": null, + "possibleTypes": null, + "__typename": "" }, "types": [ { @@ -22,10 +40,12 @@ "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "planetsPlanet", @@ -34,15 +54,18 @@ "type": { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -56,10 +79,12 @@ "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "speciesSpecies", @@ -68,15 +93,18 @@ "type": { "kind": "OBJECT", "name": "Species", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -90,10 +118,12 @@ "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "starshipsStarship", @@ -102,15 +132,18 @@ "type": { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -124,10 +157,12 @@ "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "vehiclesVehicle", @@ -136,15 +171,18 @@ "type": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -158,10 +196,12 @@ "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "filmsFilm", @@ -170,15 +210,18 @@ "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -192,10 +235,12 @@ "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "homeworldPlanet", @@ -204,15 +249,18 @@ "type": { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -226,10 +274,12 @@ "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "speciesSpecies", @@ -238,15 +288,18 @@ "type": { "kind": "OBJECT", "name": "Species", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -260,10 +313,12 @@ "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "starshipsStarship", @@ -272,15 +327,18 @@ "type": { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -294,10 +352,12 @@ "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "vehiclesVehicle", @@ -306,15 +366,18 @@ "type": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -331,11 +394,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "fileName", @@ -347,11 +413,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "handle", @@ -363,11 +432,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "height", @@ -376,10 +448,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -391,11 +465,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mimeType", @@ -404,10 +481,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "size", @@ -419,11 +498,14 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -435,11 +517,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "url", @@ -451,11 +536,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "width", @@ -464,15 +552,18 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -491,11 +582,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "AssetSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -509,11 +604,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "AssetSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mutation_in", @@ -527,11 +626,15 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains", @@ -539,9 +642,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_every", @@ -555,11 +660,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_some", @@ -573,11 +682,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "node", @@ -585,13 +698,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "AssetSubscriptionFilterNode", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -604,9 +720,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -614,9 +732,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -630,11 +750,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -648,11 +772,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -660,9 +788,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -670,9 +800,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -680,9 +812,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -690,9 +824,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName", @@ -700,9 +836,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_not", @@ -710,9 +848,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_in", @@ -726,11 +866,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_not_in", @@ -744,11 +888,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_lt", @@ -756,9 +904,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_lte", @@ -766,9 +916,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_gt", @@ -776,9 +928,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_gte", @@ -786,9 +940,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_contains", @@ -796,9 +952,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_not_contains", @@ -806,9 +964,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_starts_with", @@ -816,9 +976,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_not_starts_with", @@ -826,9 +988,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_ends_with", @@ -836,9 +1000,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_not_ends_with", @@ -846,9 +1012,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle", @@ -856,9 +1024,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_not", @@ -866,9 +1036,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_in", @@ -882,11 +1054,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_not_in", @@ -900,11 +1076,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_lt", @@ -912,9 +1092,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_lte", @@ -922,9 +1104,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_gt", @@ -932,9 +1116,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_gte", @@ -942,9 +1128,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_contains", @@ -952,9 +1140,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_not_contains", @@ -962,9 +1152,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_starts_with", @@ -972,9 +1164,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_not_starts_with", @@ -982,9 +1176,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_ends_with", @@ -992,9 +1188,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_not_ends_with", @@ -1002,9 +1200,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -1012,9 +1212,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_not", @@ -1022,9 +1224,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_in", @@ -1038,11 +1242,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_not_in", @@ -1056,11 +1264,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_lt", @@ -1068,9 +1280,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_lte", @@ -1078,9 +1292,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_gt", @@ -1088,9 +1304,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_gte", @@ -1098,9 +1316,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -1108,9 +1328,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -1118,9 +1340,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -1134,11 +1358,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -1152,11 +1380,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -1164,9 +1396,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -1174,9 +1408,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -1184,9 +1420,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -1194,9 +1432,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -1204,9 +1444,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -1214,9 +1456,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -1224,9 +1468,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -1234,9 +1480,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -1244,9 +1492,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -1254,9 +1504,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType", @@ -1264,9 +1516,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_not", @@ -1274,9 +1528,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_in", @@ -1290,11 +1546,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_not_in", @@ -1308,11 +1568,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_lt", @@ -1320,9 +1584,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_lte", @@ -1330,9 +1596,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_gt", @@ -1340,9 +1608,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_gte", @@ -1350,9 +1620,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_contains", @@ -1360,9 +1632,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_not_contains", @@ -1370,9 +1644,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_starts_with", @@ -1380,9 +1656,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_not_starts_with", @@ -1390,9 +1668,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_ends_with", @@ -1400,9 +1680,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_not_ends_with", @@ -1410,9 +1692,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size", @@ -1420,9 +1704,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_not", @@ -1430,9 +1716,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_in", @@ -1446,11 +1734,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_not_in", @@ -1464,11 +1756,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_lt", @@ -1476,9 +1772,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_lte", @@ -1486,9 +1784,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_gt", @@ -1496,9 +1796,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_gte", @@ -1506,9 +1808,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -1516,9 +1820,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -1526,9 +1832,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -1542,11 +1850,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -1560,11 +1872,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -1572,9 +1888,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -1582,9 +1900,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -1592,9 +1912,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -1602,9 +1924,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url", @@ -1612,9 +1936,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_not", @@ -1622,9 +1948,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_in", @@ -1638,11 +1966,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_not_in", @@ -1656,11 +1988,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_lt", @@ -1668,9 +2004,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_lte", @@ -1678,9 +2016,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_gt", @@ -1688,9 +2028,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_gte", @@ -1698,9 +2040,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_contains", @@ -1708,9 +2052,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_not_contains", @@ -1718,9 +2064,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_starts_with", @@ -1728,9 +2076,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_not_starts_with", @@ -1738,9 +2088,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_ends_with", @@ -1748,9 +2100,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_not_ends_with", @@ -1758,9 +2112,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width", @@ -1768,9 +2124,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_not", @@ -1778,9 +2136,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_in", @@ -1794,11 +2154,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_not_in", @@ -1812,11 +2176,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_lt", @@ -1824,9 +2192,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_lte", @@ -1834,9 +2204,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_gt", @@ -1844,9 +2216,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_gte", @@ -1854,13 +2228,16 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -1877,11 +2254,14 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "node", @@ -1890,10 +2270,12 @@ "type": { "kind": "OBJECT", "name": "Asset", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedFields", @@ -1908,12 +2290,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "previousValues", @@ -1922,15 +2308,18 @@ "type": { "kind": "OBJECT", "name": "AssetPreviousValues", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -1946,10 +2335,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle", @@ -1960,10 +2352,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -1971,9 +2366,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType", @@ -1981,9 +2378,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size", @@ -1994,10 +2393,13 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url", @@ -2008,10 +2410,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width", @@ -2019,13 +2424,16 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -2038,9 +2446,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId", @@ -2051,10 +2461,13 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -2062,9 +2475,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl", @@ -2072,9 +2487,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "producers", @@ -2088,11 +2505,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate", @@ -2100,9 +2521,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -2113,10 +2536,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "charactersIds", @@ -2130,11 +2556,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters", @@ -2148,11 +2578,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmcharactersPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planetsIds", @@ -2166,11 +2600,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets", @@ -2184,11 +2622,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmplanetsPlanet", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -2202,11 +2644,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -2220,11 +2666,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -2238,11 +2688,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -2256,11 +2710,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -2274,11 +2732,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -2292,15 +2754,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -2313,9 +2780,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -2329,11 +2798,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender", @@ -2341,9 +2814,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -2357,11 +2832,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -2369,9 +2848,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -2379,9 +2860,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass", @@ -2389,9 +2872,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -2402,10 +2887,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -2419,11 +2907,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworldId", @@ -2431,9 +2923,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworld", @@ -2441,9 +2935,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonhomeworldPlanet", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -2457,11 +2953,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -2475,11 +2975,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -2493,11 +2997,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -2511,11 +3019,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -2529,11 +3041,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -2547,11 +3063,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -2565,11 +3085,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -2583,15 +3107,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -2610,11 +3139,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter", @@ -2622,9 +3155,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity", @@ -2632,9 +3167,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -2642,9 +3179,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -2655,10 +3194,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod", @@ -2666,9 +3208,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population", @@ -2676,9 +3220,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod", @@ -2686,9 +3232,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater", @@ -2696,9 +3244,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "terrain", @@ -2712,11 +3262,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -2730,11 +3284,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -2748,11 +3306,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residentsIds", @@ -2766,11 +3328,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents", @@ -2784,15 +3350,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetresidentsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -2805,9 +3376,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan", @@ -2815,9 +3388,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification", @@ -2825,9 +3400,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation", @@ -2835,9 +3412,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -2851,11 +3430,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -2869,11 +3452,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -2881,9 +3468,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language", @@ -2891,9 +3480,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -2904,10 +3495,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -2921,11 +3515,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -2939,11 +3537,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -2957,11 +3559,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciesfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "peopleIds", @@ -2975,11 +3581,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people", @@ -2993,15 +3603,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciespeoplePerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -3014,9 +3629,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -3024,9 +3641,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -3034,9 +3653,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -3044,9 +3665,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -3054,9 +3677,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating", @@ -3064,9 +3689,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -3074,9 +3701,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -3084,9 +3713,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -3100,11 +3731,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -3112,9 +3747,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt", @@ -3122,9 +3759,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -3135,10 +3774,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -3146,9 +3788,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -3162,11 +3806,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -3180,11 +3828,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshipfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -3198,11 +3850,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -3216,15 +3872,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshippilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -3237,9 +3898,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -3247,9 +3910,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -3257,9 +3922,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -3267,9 +3934,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -3277,9 +3946,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -3287,9 +3958,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -3297,9 +3970,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -3313,11 +3988,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -3325,9 +4004,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model", @@ -3335,9 +4016,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -3348,10 +4031,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -3359,9 +4045,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -3375,11 +4063,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -3393,11 +4085,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclefilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -3411,11 +4107,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -3429,15 +4129,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclepilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -3454,11 +4159,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "director", @@ -3467,10 +4175,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "episodeId", @@ -3482,11 +4192,14 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -3498,11 +4211,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -3514,11 +4230,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "openingCrawl", @@ -3527,10 +4246,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "producers", @@ -3545,12 +4266,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "releaseDate", @@ -3559,10 +4284,12 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "title", @@ -3574,11 +4301,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -3590,16 +4320,20 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -3618,11 +4352,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -3636,11 +4374,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mutation_in", @@ -3654,11 +4396,15 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains", @@ -3666,9 +4412,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_every", @@ -3682,11 +4430,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_some", @@ -3700,11 +4452,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "node", @@ -3712,13 +4468,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmSubscriptionFilterNode", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -3731,9 +4490,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -3741,9 +4502,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -3757,11 +4520,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -3775,11 +4542,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -3787,9 +4558,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -3797,9 +4570,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -3807,9 +4582,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -3817,9 +4594,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director", @@ -3827,9 +4606,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_not", @@ -3837,9 +4618,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_in", @@ -3853,11 +4636,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_not_in", @@ -3871,11 +4658,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_lt", @@ -3883,9 +4674,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_lte", @@ -3893,9 +4686,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_gt", @@ -3903,9 +4698,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_gte", @@ -3913,9 +4710,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_contains", @@ -3923,9 +4722,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_not_contains", @@ -3933,9 +4734,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_starts_with", @@ -3943,9 +4746,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_not_starts_with", @@ -3953,9 +4758,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_ends_with", @@ -3963,9 +4770,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_not_ends_with", @@ -3973,9 +4782,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId", @@ -3983,9 +4794,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_not", @@ -3993,9 +4806,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_in", @@ -4009,11 +4824,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_not_in", @@ -4027,11 +4846,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_lt", @@ -4039,9 +4862,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_lte", @@ -4049,9 +4874,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_gt", @@ -4059,9 +4886,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_gte", @@ -4069,9 +4898,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -4079,9 +4910,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -4089,9 +4922,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -4105,11 +4940,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -4123,11 +4962,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -4135,9 +4978,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -4145,9 +4990,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -4155,9 +5002,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -4165,9 +5014,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -4175,9 +5026,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -4185,9 +5038,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -4195,9 +5050,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -4205,9 +5062,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -4215,9 +5074,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -4225,9 +5086,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -4235,9 +5098,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -4245,9 +5110,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl", @@ -4255,9 +5122,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_not", @@ -4265,9 +5134,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_in", @@ -4281,11 +5152,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_not_in", @@ -4299,11 +5174,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_lt", @@ -4311,9 +5190,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_lte", @@ -4321,9 +5202,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_gt", @@ -4331,9 +5214,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_gte", @@ -4341,9 +5226,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_contains", @@ -4351,9 +5238,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_not_contains", @@ -4361,9 +5250,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_starts_with", @@ -4371,9 +5262,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_not_starts_with", @@ -4381,9 +5274,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_ends_with", @@ -4391,9 +5286,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_not_ends_with", @@ -4401,9 +5298,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate", @@ -4411,9 +5310,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_not", @@ -4421,9 +5322,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_in", @@ -4437,11 +5340,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_not_in", @@ -4455,11 +5362,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_lt", @@ -4467,9 +5378,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_lte", @@ -4477,9 +5390,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_gt", @@ -4487,9 +5402,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_gte", @@ -4497,9 +5414,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -4507,9 +5426,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_not", @@ -4517,9 +5438,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_in", @@ -4533,11 +5456,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_not_in", @@ -4551,11 +5478,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_lt", @@ -4563,9 +5494,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_lte", @@ -4573,9 +5506,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_gt", @@ -4583,9 +5518,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_gte", @@ -4593,9 +5530,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_contains", @@ -4603,9 +5542,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_not_contains", @@ -4613,9 +5554,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_starts_with", @@ -4623,9 +5566,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_not_starts_with", @@ -4633,9 +5578,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_ends_with", @@ -4643,9 +5590,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_not_ends_with", @@ -4653,9 +5602,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -4663,9 +5614,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -4673,9 +5626,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -4689,11 +5644,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -4707,11 +5666,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -4719,9 +5682,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -4729,9 +5694,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -4739,9 +5706,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -4749,9 +5718,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters_every", @@ -4759,9 +5730,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters_some", @@ -4769,9 +5742,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters_none", @@ -4779,9 +5754,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets_every", @@ -4789,9 +5766,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets_some", @@ -4799,9 +5778,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets_none", @@ -4809,9 +5790,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_every", @@ -4819,9 +5802,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_some", @@ -4829,9 +5814,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_none", @@ -4839,9 +5826,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_every", @@ -4849,9 +5838,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_some", @@ -4859,9 +5850,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_none", @@ -4869,9 +5862,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_every", @@ -4879,9 +5874,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_some", @@ -4889,9 +5886,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_none", @@ -4899,13 +5898,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -4922,11 +5924,14 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "node", @@ -4935,10 +5940,12 @@ "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedFields", @@ -4953,12 +5960,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "previousValues", @@ -4967,15 +5978,18 @@ "type": { "kind": "OBJECT", "name": "FilmPreviousValues", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -4988,9 +6002,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -5004,11 +6020,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender", @@ -5016,9 +6036,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -5032,11 +6054,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -5044,9 +6070,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -5054,9 +6082,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass", @@ -5064,9 +6094,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -5077,10 +6109,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -5094,11 +6129,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworldId", @@ -5106,9 +6145,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworld", @@ -5116,9 +6157,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonhomeworldPlanet", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -5132,11 +6175,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -5150,11 +6197,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -5168,11 +6219,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -5186,11 +6241,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -5204,11 +6263,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -5222,11 +6285,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -5240,11 +6307,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -5258,15 +6329,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -5285,11 +6361,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter", @@ -5297,9 +6377,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity", @@ -5307,9 +6389,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -5317,9 +6401,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -5330,10 +6416,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod", @@ -5341,9 +6430,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population", @@ -5351,9 +6442,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod", @@ -5361,9 +6454,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater", @@ -5371,9 +6466,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "terrain", @@ -5387,11 +6484,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -5405,11 +6506,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -5423,11 +6528,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residentsIds", @@ -5441,11 +6550,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents", @@ -5459,15 +6572,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetresidentsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -5480,9 +6598,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan", @@ -5490,9 +6610,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification", @@ -5500,9 +6622,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation", @@ -5510,9 +6634,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -5526,11 +6652,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -5544,11 +6674,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -5556,9 +6690,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language", @@ -5566,9 +6702,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -5579,10 +6717,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -5596,11 +6737,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -5614,11 +6759,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -5632,11 +6781,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciesfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "peopleIds", @@ -5650,11 +6803,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people", @@ -5668,15 +6825,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciespeoplePerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -5689,9 +6851,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -5699,9 +6863,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -5709,9 +6875,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -5719,9 +6887,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -5729,9 +6899,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating", @@ -5739,9 +6911,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -5749,9 +6923,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -5759,9 +6935,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -5775,11 +6953,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -5787,9 +6969,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt", @@ -5797,9 +6981,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -5810,10 +6996,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -5821,9 +7010,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -5837,11 +7028,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -5855,11 +7050,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshipfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -5873,11 +7072,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -5891,15 +7094,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshippilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -5912,9 +7120,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -5922,9 +7132,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -5932,9 +7144,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -5942,9 +7156,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -5952,9 +7168,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -5962,9 +7180,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -5972,9 +7192,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -5988,11 +7210,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -6000,9 +7226,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model", @@ -6010,9 +7238,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -6023,10 +7253,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -6034,9 +7267,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -6050,11 +7285,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -6068,11 +7307,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclefilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -6086,11 +7329,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -6104,15 +7351,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclepilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -6128,10 +7380,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "input", @@ -6142,10 +7397,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "clientMutationId", @@ -6153,13 +7411,16 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -6176,11 +7437,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "clientMutationId", @@ -6189,15 +7453,18 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -6217,10 +7484,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle", @@ -6231,10 +7501,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -6242,9 +7515,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType", @@ -6252,9 +7527,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size", @@ -6265,10 +7542,13 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url", @@ -6279,10 +7559,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width", @@ -6290,18 +7573,22 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Asset", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createFilm", @@ -6313,9 +7600,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId", @@ -6326,10 +7615,13 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -6337,9 +7629,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl", @@ -6347,9 +7641,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "producers", @@ -6363,11 +7659,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate", @@ -6375,9 +7675,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -6388,10 +7690,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "charactersIds", @@ -6405,11 +7710,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters", @@ -6423,11 +7732,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmcharactersPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planetsIds", @@ -6441,11 +7754,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets", @@ -6459,11 +7776,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmplanetsPlanet", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -6477,11 +7798,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -6495,11 +7820,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -6513,11 +7842,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -6531,11 +7864,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -6549,11 +7886,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -6567,20 +7908,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createPerson", @@ -6592,9 +7939,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -6608,11 +7957,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender", @@ -6620,9 +7973,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -6636,11 +7991,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -6648,9 +8007,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -6658,9 +8019,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass", @@ -6668,9 +8031,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -6681,10 +8046,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -6698,11 +8066,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworldId", @@ -6710,9 +8082,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworld", @@ -6720,9 +8094,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonhomeworldPlanet", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -6736,11 +8112,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -6754,11 +8134,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -6772,11 +8156,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -6790,11 +8178,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -6808,11 +8200,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -6826,11 +8222,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -6844,11 +8244,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -6862,20 +8266,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createPlanet", @@ -6893,11 +8303,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter", @@ -6905,9 +8319,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity", @@ -6915,9 +8331,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -6925,9 +8343,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -6938,10 +8358,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod", @@ -6949,9 +8372,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population", @@ -6959,9 +8384,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod", @@ -6969,9 +8396,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater", @@ -6979,9 +8408,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "terrain", @@ -6995,11 +8426,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -7013,11 +8448,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -7031,11 +8470,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residentsIds", @@ -7049,11 +8492,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents", @@ -7067,20 +8514,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetresidentsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createSpecies", @@ -7092,9 +8545,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan", @@ -7102,9 +8557,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification", @@ -7112,9 +8569,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation", @@ -7122,9 +8581,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -7138,11 +8599,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -7156,11 +8621,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -7168,9 +8637,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language", @@ -7178,9 +8649,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -7191,10 +8664,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -7208,11 +8684,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -7226,11 +8706,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -7244,11 +8728,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciesfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "peopleIds", @@ -7262,11 +8750,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people", @@ -7280,20 +8772,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciespeoplePerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Species", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createStarship", @@ -7305,9 +8803,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -7315,9 +8815,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -7325,9 +8827,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -7335,9 +8839,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -7345,9 +8851,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating", @@ -7355,9 +8863,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -7365,9 +8875,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -7375,9 +8887,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -7391,11 +8905,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -7403,9 +8921,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt", @@ -7413,9 +8933,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -7426,10 +8948,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -7437,9 +8962,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -7453,11 +8980,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -7471,11 +9002,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshipfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -7489,11 +9024,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -7507,20 +9046,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshippilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createVehicle", @@ -7532,9 +9077,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -7542,9 +9089,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -7552,9 +9101,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -7562,9 +9113,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -7572,9 +9125,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -7582,9 +9137,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -7592,9 +9149,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -7608,11 +9167,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -7620,9 +9183,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model", @@ -7630,9 +9195,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -7643,10 +9210,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -7654,9 +9224,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -7670,11 +9242,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -7688,11 +9264,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclefilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -7706,11 +9286,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -7724,20 +9308,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclepilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateAsset", @@ -7749,9 +9339,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle", @@ -7759,9 +9351,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -7769,9 +9363,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -7782,10 +9378,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType", @@ -7793,9 +9392,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size", @@ -7803,9 +9404,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url", @@ -7813,9 +9416,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width", @@ -7823,18 +9428,22 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Asset", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateFilm", @@ -7846,9 +9455,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId", @@ -7856,9 +9467,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -7869,10 +9482,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -7880,9 +9496,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl", @@ -7890,9 +9508,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "producers", @@ -7906,11 +9526,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate", @@ -7918,9 +9542,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -7928,9 +9554,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "charactersIds", @@ -7944,11 +9572,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters", @@ -7962,11 +9594,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmcharactersPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planetsIds", @@ -7980,11 +9616,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets", @@ -7998,11 +9638,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmplanetsPlanet", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -8016,11 +9660,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -8034,11 +9682,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -8052,11 +9704,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -8070,11 +9726,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -8088,11 +9748,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -8106,20 +9770,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatePerson", @@ -8131,9 +9801,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -8147,11 +9819,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender", @@ -8159,9 +9835,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -8175,11 +9853,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -8187,9 +9869,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -8200,10 +9884,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -8211,9 +9898,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass", @@ -8221,9 +9910,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -8231,9 +9922,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -8247,11 +9940,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworldId", @@ -8259,9 +9956,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworld", @@ -8269,9 +9968,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonhomeworldPlanet", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -8285,11 +9986,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -8303,11 +10008,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -8321,11 +10030,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -8339,11 +10052,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -8357,11 +10074,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -8375,11 +10096,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -8393,11 +10118,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -8411,20 +10140,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatePlanet", @@ -8442,11 +10177,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter", @@ -8454,9 +10193,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity", @@ -8464,9 +10205,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -8477,10 +10220,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -8488,9 +10234,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -8498,9 +10246,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod", @@ -8508,9 +10258,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population", @@ -8518,9 +10270,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod", @@ -8528,9 +10282,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater", @@ -8538,9 +10294,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "terrain", @@ -8554,11 +10312,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -8572,11 +10334,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -8590,11 +10356,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residentsIds", @@ -8608,11 +10378,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents", @@ -8626,20 +10400,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetresidentsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateSpecies", @@ -8651,9 +10431,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan", @@ -8661,9 +10443,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification", @@ -8671,9 +10455,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation", @@ -8681,9 +10467,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -8697,11 +10485,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -8715,11 +10507,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -8730,10 +10526,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -8741,9 +10540,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language", @@ -8751,9 +10552,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -8761,9 +10564,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -8777,11 +10582,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -8795,11 +10604,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -8813,11 +10626,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciesfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "peopleIds", @@ -8831,11 +10648,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people", @@ -8849,20 +10670,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciespeoplePerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Species", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateStarship", @@ -8874,9 +10701,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -8884,9 +10713,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -8894,9 +10725,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -8904,9 +10737,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -8914,9 +10749,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating", @@ -8924,9 +10761,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -8937,10 +10776,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -8948,9 +10790,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -8958,9 +10802,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -8974,11 +10820,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -8986,9 +10836,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt", @@ -8996,9 +10848,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -9006,9 +10860,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -9016,9 +10872,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -9032,11 +10890,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -9050,11 +10912,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshipfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -9068,11 +10934,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -9086,20 +10956,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshippilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateVehicle", @@ -9111,9 +10987,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -9121,9 +10999,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -9131,9 +11011,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -9141,9 +11023,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -9151,9 +11035,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -9164,10 +11050,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -9175,9 +11064,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -9185,9 +11076,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -9201,11 +11094,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -9213,9 +11110,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model", @@ -9223,9 +11122,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -9233,9 +11134,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -9243,9 +11146,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -9259,11 +11164,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -9277,11 +11186,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclefilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -9295,11 +11208,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -9313,20 +11230,26 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclepilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateOrCreateAsset", @@ -9341,10 +11264,13 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "UpdateAsset", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "create", @@ -9355,19 +11281,24 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "CreateAsset", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Asset", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateOrCreateFilm", @@ -9382,10 +11313,13 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "UpdateFilm", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "create", @@ -9396,19 +11330,24 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "CreateFilm", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateOrCreatePerson", @@ -9423,10 +11362,13 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "UpdatePerson", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "create", @@ -9437,19 +11379,24 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "CreatePerson", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateOrCreatePlanet", @@ -9464,10 +11411,13 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "UpdatePlanet", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "create", @@ -9478,19 +11428,24 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "CreatePlanet", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateOrCreateSpecies", @@ -9505,10 +11460,13 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "UpdateSpecies", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "create", @@ -9519,19 +11477,24 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "CreateSpecies", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Species", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateOrCreateStarship", @@ -9546,10 +11509,13 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "UpdateStarship", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "create", @@ -9560,19 +11526,24 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "CreateStarship", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updateOrCreateVehicle", @@ -9587,10 +11558,13 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "UpdateVehicle", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "create", @@ -9601,19 +11575,24 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "CreateVehicle", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "deleteAsset", @@ -9628,19 +11607,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Asset", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "deleteFilm", @@ -9655,19 +11639,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "deletePerson", @@ -9682,19 +11671,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "deletePlanet", @@ -9709,19 +11703,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "deleteSpecies", @@ -9736,19 +11735,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Species", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "deleteStarship", @@ -9763,19 +11767,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "deleteVehicle", @@ -9790,19 +11799,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "addToFilmPlanets", @@ -9817,10 +11831,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsFilmId", @@ -9831,19 +11848,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "AddToFilmPlanetsPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "addToFilmSpecies", @@ -9858,10 +11880,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsFilmId", @@ -9872,19 +11897,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "AddToFilmSpeciesPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "addToFilmStarships", @@ -9899,10 +11929,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsFilmId", @@ -9913,19 +11946,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "AddToFilmStarshipsPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "addToFilmVehicles", @@ -9940,10 +11978,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsFilmId", @@ -9954,19 +11995,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "AddToFilmVehiclesPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "addToPeopleFilm", @@ -9981,10 +12027,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "charactersPersonId", @@ -9995,19 +12044,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "AddToPeopleFilmPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "addToPeoplePlanet", @@ -10022,10 +12076,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residentsPersonId", @@ -10036,19 +12093,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "AddToPeoplePlanetPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "addToPeopleSpecies", @@ -10063,10 +12125,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "peoplePersonId", @@ -10077,19 +12142,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "AddToPeopleSpeciesPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "addToPeopleStarships", @@ -10104,10 +12174,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsPersonId", @@ -10118,19 +12191,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "AddToPeopleStarshipsPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "addToPeopleVehicles", @@ -10145,10 +12223,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsPersonId", @@ -10159,19 +12240,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "AddToPeopleVehiclesPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "removeFromFilmPlanets", @@ -10186,10 +12272,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsFilmId", @@ -10200,19 +12289,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "RemoveFromFilmPlanetsPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "removeFromFilmSpecies", @@ -10227,10 +12321,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsFilmId", @@ -10241,19 +12338,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "RemoveFromFilmSpeciesPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "removeFromFilmStarships", @@ -10268,10 +12370,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsFilmId", @@ -10282,19 +12387,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "RemoveFromFilmStarshipsPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "removeFromFilmVehicles", @@ -10309,10 +12419,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsFilmId", @@ -10323,19 +12436,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "RemoveFromFilmVehiclesPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "removeFromPeopleFilm", @@ -10350,10 +12468,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "charactersPersonId", @@ -10364,19 +12485,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "RemoveFromPeopleFilmPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "removeFromPeoplePlanet", @@ -10391,10 +12517,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residentsPersonId", @@ -10405,19 +12534,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "RemoveFromPeoplePlanetPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "removeFromPeopleSpecies", @@ -10432,10 +12566,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "peoplePersonId", @@ -10446,19 +12583,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "RemoveFromPeopleSpeciesPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "removeFromPeopleStarships", @@ -10473,10 +12615,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsPersonId", @@ -10487,19 +12632,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "RemoveFromPeopleStarshipsPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "removeFromPeopleVehicles", @@ -10514,10 +12664,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsPersonId", @@ -10528,19 +12681,24 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "RemoveFromPeopleVehiclesPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "invokeFunction", @@ -10555,24 +12713,30 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "InvokeFunctionInput", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "InvokeFunctionPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -10586,10 +12750,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt", @@ -10601,11 +12767,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "eyeColor", @@ -10620,12 +12789,16 @@ "ofType": { "kind": "ENUM", "name": "PERSON_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "gender", @@ -10634,10 +12807,12 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "hairColor", @@ -10652,12 +12827,16 @@ "ofType": { "kind": "ENUM", "name": "PERSON_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "height", @@ -10666,10 +12845,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -10681,11 +12862,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -10697,11 +12881,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mass", @@ -10710,10 +12897,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name", @@ -10725,11 +12914,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "skinColor", @@ -10744,12 +12936,16 @@ "ofType": { "kind": "ENUM", "name": "PERSON_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -10761,16 +12957,20 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -10789,11 +12989,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -10807,11 +13011,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mutation_in", @@ -10825,11 +13033,15 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains", @@ -10837,9 +13049,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_every", @@ -10853,11 +13067,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_some", @@ -10871,11 +13089,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "node", @@ -10883,13 +13105,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonSubscriptionFilterNode", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -10902,9 +13127,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_not", @@ -10912,9 +13139,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_in", @@ -10928,11 +13157,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_not_in", @@ -10946,11 +13179,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_lt", @@ -10958,9 +13195,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_lte", @@ -10968,9 +13207,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_gt", @@ -10978,9 +13219,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_gte", @@ -10988,9 +13231,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_contains", @@ -10998,9 +13243,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_not_contains", @@ -11008,9 +13255,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_starts_with", @@ -11018,9 +13267,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_not_starts_with", @@ -11028,9 +13279,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_ends_with", @@ -11038,9 +13291,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_not_ends_with", @@ -11048,9 +13303,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt", @@ -11058,9 +13315,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -11068,9 +13327,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -11084,11 +13345,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -11102,11 +13367,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -11114,9 +13383,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -11124,9 +13395,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -11134,9 +13407,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -11144,9 +13419,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender", @@ -11154,9 +13431,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender_not", @@ -11164,9 +13443,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender_in", @@ -11180,11 +13461,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender_not_in", @@ -11198,11 +13483,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -11210,9 +13499,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_not", @@ -11220,9 +13511,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_in", @@ -11236,11 +13529,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_not_in", @@ -11254,11 +13551,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_lt", @@ -11266,9 +13567,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_lte", @@ -11276,9 +13579,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_gt", @@ -11286,9 +13591,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_gte", @@ -11296,9 +13603,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -11306,9 +13615,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -11316,9 +13627,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -11332,11 +13645,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -11350,11 +13667,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -11362,9 +13683,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -11372,9 +13695,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -11382,9 +13707,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -11392,9 +13719,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -11402,9 +13731,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -11412,9 +13743,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -11422,9 +13755,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -11432,9 +13767,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -11442,9 +13779,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -11452,9 +13791,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -11462,9 +13803,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -11472,9 +13815,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass", @@ -11482,9 +13827,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_not", @@ -11492,9 +13839,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_in", @@ -11508,11 +13857,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_not_in", @@ -11526,11 +13879,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_lt", @@ -11538,9 +13895,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_lte", @@ -11548,9 +13907,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_gt", @@ -11558,9 +13919,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_gte", @@ -11568,9 +13931,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -11578,9 +13943,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not", @@ -11588,9 +13955,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_in", @@ -11604,11 +13973,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_in", @@ -11622,11 +13995,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lt", @@ -11634,9 +14011,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lte", @@ -11644,9 +14023,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gt", @@ -11654,9 +14035,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gte", @@ -11664,9 +14047,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_contains", @@ -11674,9 +14059,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_contains", @@ -11684,9 +14071,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_starts_with", @@ -11694,9 +14083,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_starts_with", @@ -11704,9 +14095,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_ends_with", @@ -11714,9 +14107,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_ends_with", @@ -11724,9 +14119,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -11734,9 +14131,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -11744,9 +14143,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -11760,11 +14161,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -11778,11 +14183,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -11790,9 +14199,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -11800,9 +14211,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -11810,9 +14223,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -11820,9 +14235,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_every", @@ -11830,9 +14247,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_some", @@ -11840,9 +14259,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_none", @@ -11850,9 +14271,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworld", @@ -11860,9 +14283,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_every", @@ -11870,9 +14295,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_some", @@ -11880,9 +14307,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_none", @@ -11890,9 +14319,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_every", @@ -11900,9 +14331,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_some", @@ -11910,9 +14343,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_none", @@ -11920,9 +14355,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_every", @@ -11930,9 +14367,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_some", @@ -11940,9 +14379,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_none", @@ -11950,13 +14391,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -11973,11 +14417,14 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "node", @@ -11986,10 +14433,12 @@ "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedFields", @@ -12004,12 +14453,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "previousValues", @@ -12018,15 +14471,18 @@ "type": { "kind": "OBJECT", "name": "PersonPreviousValues", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -12039,9 +14495,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId", @@ -12052,10 +14510,13 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -12063,9 +14524,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl", @@ -12073,9 +14536,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "producers", @@ -12089,11 +14554,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate", @@ -12101,9 +14570,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -12114,10 +14585,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "charactersIds", @@ -12131,11 +14605,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters", @@ -12149,11 +14627,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmcharactersPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planetsIds", @@ -12167,11 +14649,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets", @@ -12185,11 +14671,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmplanetsPlanet", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -12203,11 +14693,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -12221,11 +14715,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -12239,11 +14737,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -12257,11 +14759,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -12275,11 +14781,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -12293,15 +14803,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -12320,11 +14835,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter", @@ -12332,9 +14851,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity", @@ -12342,9 +14863,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -12352,9 +14875,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -12365,10 +14890,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod", @@ -12376,9 +14904,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population", @@ -12386,9 +14916,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod", @@ -12396,9 +14928,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater", @@ -12406,9 +14940,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "terrain", @@ -12422,11 +14958,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -12440,11 +14980,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -12458,11 +15002,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residentsIds", @@ -12476,11 +15024,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents", @@ -12494,15 +15046,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetresidentsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -12515,9 +15072,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan", @@ -12525,9 +15084,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification", @@ -12535,9 +15096,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation", @@ -12545,9 +15108,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -12561,11 +15126,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -12579,11 +15148,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -12591,9 +15164,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language", @@ -12601,9 +15176,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -12614,10 +15191,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -12631,11 +15211,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -12649,11 +15233,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -12667,11 +15255,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciesfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "peopleIds", @@ -12685,11 +15277,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people", @@ -12703,15 +15299,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciespeoplePerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -12724,9 +15325,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -12734,9 +15337,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -12744,9 +15349,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -12754,9 +15361,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -12764,9 +15373,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating", @@ -12774,9 +15385,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -12784,9 +15397,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -12794,9 +15409,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -12810,11 +15427,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -12822,9 +15443,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt", @@ -12832,9 +15455,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -12845,10 +15470,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -12856,9 +15484,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -12872,11 +15502,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -12890,11 +15524,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshipfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -12908,11 +15546,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -12926,15 +15568,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshippilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -12947,9 +15594,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -12957,9 +15606,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -12967,9 +15618,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -12977,9 +15630,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -12987,9 +15642,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -12997,9 +15654,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -13007,9 +15666,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -13023,11 +15684,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -13035,9 +15700,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model", @@ -13045,9 +15712,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -13058,10 +15727,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -13069,9 +15741,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -13085,11 +15759,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -13103,11 +15781,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclefilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -13121,11 +15803,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -13139,15 +15825,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclepilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -13167,12 +15858,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt", @@ -13184,11 +15879,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "diameter", @@ -13197,10 +15895,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "gravity", @@ -13209,10 +15909,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -13224,11 +15926,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -13240,11 +15945,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name", @@ -13256,11 +15964,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "orbitalPeriod", @@ -13269,10 +15980,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "population", @@ -13281,10 +15994,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "rotationPeriod", @@ -13293,10 +16008,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "surfaceWater", @@ -13305,10 +16022,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "terrain", @@ -13323,12 +16042,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -13340,16 +16063,20 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -13368,11 +16095,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -13386,11 +16117,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mutation_in", @@ -13404,11 +16139,15 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains", @@ -13416,9 +16155,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_every", @@ -13432,11 +16173,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_some", @@ -13450,11 +16195,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "node", @@ -13462,13 +16211,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetSubscriptionFilterNode", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -13481,9 +16233,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -13491,9 +16245,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -13507,11 +16263,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -13525,11 +16285,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -13537,9 +16301,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -13547,9 +16313,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -13557,9 +16325,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -13567,9 +16337,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter", @@ -13577,9 +16349,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_not", @@ -13587,9 +16361,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_in", @@ -13603,11 +16379,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_not_in", @@ -13621,11 +16401,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_lt", @@ -13633,9 +16417,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_lte", @@ -13643,9 +16429,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_gt", @@ -13653,9 +16441,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_gte", @@ -13663,9 +16453,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity", @@ -13673,9 +16465,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_not", @@ -13683,9 +16477,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_in", @@ -13699,11 +16495,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_not_in", @@ -13717,11 +16517,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_lt", @@ -13729,9 +16533,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_lte", @@ -13739,9 +16545,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_gt", @@ -13749,9 +16557,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_gte", @@ -13759,9 +16569,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_contains", @@ -13769,9 +16581,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_not_contains", @@ -13779,9 +16593,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_starts_with", @@ -13789,9 +16605,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_not_starts_with", @@ -13799,9 +16617,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_ends_with", @@ -13809,9 +16629,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_not_ends_with", @@ -13819,9 +16641,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -13829,9 +16653,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -13839,9 +16665,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -13855,11 +16683,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -13873,11 +16705,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -13885,9 +16721,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -13895,9 +16733,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -13905,9 +16745,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -13915,9 +16757,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -13925,9 +16769,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -13935,9 +16781,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -13945,9 +16793,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -13955,9 +16805,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -13965,9 +16817,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -13975,9 +16829,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -13985,9 +16841,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -13995,9 +16853,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -14005,9 +16865,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not", @@ -14015,9 +16877,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_in", @@ -14031,11 +16895,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_in", @@ -14049,11 +16917,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lt", @@ -14061,9 +16933,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lte", @@ -14071,9 +16945,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gt", @@ -14081,9 +16957,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gte", @@ -14091,9 +16969,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_contains", @@ -14101,9 +16981,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_contains", @@ -14111,9 +16993,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_starts_with", @@ -14121,9 +17005,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_starts_with", @@ -14131,9 +17017,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_ends_with", @@ -14141,9 +17029,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_ends_with", @@ -14151,9 +17041,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod", @@ -14161,9 +17053,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_not", @@ -14171,9 +17065,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_in", @@ -14187,11 +17083,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_not_in", @@ -14205,11 +17105,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_lt", @@ -14217,9 +17121,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_lte", @@ -14227,9 +17133,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_gt", @@ -14237,9 +17145,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_gte", @@ -14247,9 +17157,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population", @@ -14257,9 +17169,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_not", @@ -14267,9 +17181,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_in", @@ -14283,11 +17199,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_not_in", @@ -14301,11 +17221,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_lt", @@ -14313,9 +17237,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_lte", @@ -14323,9 +17249,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_gt", @@ -14333,9 +17261,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_gte", @@ -14343,9 +17273,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod", @@ -14353,9 +17285,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_not", @@ -14363,9 +17297,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_in", @@ -14379,11 +17315,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_not_in", @@ -14397,11 +17337,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_lt", @@ -14409,9 +17353,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_lte", @@ -14419,9 +17365,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_gt", @@ -14429,9 +17377,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_gte", @@ -14439,9 +17389,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater", @@ -14449,9 +17401,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_not", @@ -14459,9 +17413,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_in", @@ -14475,11 +17431,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_not_in", @@ -14493,11 +17453,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_lt", @@ -14505,9 +17469,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_lte", @@ -14515,9 +17481,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_gt", @@ -14525,9 +17493,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_gte", @@ -14535,9 +17505,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -14545,9 +17517,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -14555,9 +17529,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -14571,11 +17547,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -14589,11 +17569,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -14601,9 +17585,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -14611,9 +17597,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -14621,9 +17609,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -14631,9 +17621,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_every", @@ -14641,9 +17633,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_some", @@ -14651,9 +17645,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_none", @@ -14661,9 +17657,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents_every", @@ -14671,9 +17669,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents_some", @@ -14681,9 +17681,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents_none", @@ -14691,13 +17693,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -14714,11 +17719,14 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "node", @@ -14727,10 +17735,12 @@ "type": { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedFields", @@ -14745,12 +17755,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "previousValues", @@ -14759,15 +17773,18 @@ "type": { "kind": "OBJECT", "name": "PlanetPreviousValues", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -14780,9 +17797,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId", @@ -14793,10 +17812,13 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -14804,9 +17826,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl", @@ -14814,9 +17838,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "producers", @@ -14830,11 +17856,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate", @@ -14842,9 +17872,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -14855,10 +17887,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "charactersIds", @@ -14872,11 +17907,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters", @@ -14890,11 +17929,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmcharactersPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planetsIds", @@ -14908,11 +17951,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets", @@ -14926,11 +17973,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmplanetsPlanet", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -14944,11 +17995,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -14962,11 +18017,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -14980,11 +18039,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -14998,11 +18061,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -15016,11 +18083,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -15034,15 +18105,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -15055,9 +18131,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -15071,11 +18149,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender", @@ -15083,9 +18165,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -15099,11 +18183,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -15111,9 +18199,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -15121,9 +18211,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass", @@ -15131,9 +18223,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -15144,10 +18238,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -15161,11 +18258,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -15179,11 +18280,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -15197,11 +18302,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -15215,11 +18324,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -15233,11 +18346,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -15251,11 +18368,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -15269,11 +18390,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -15287,11 +18412,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -15305,15 +18434,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -15327,10 +18461,12 @@ "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "planetsPlanet", @@ -15339,15 +18475,18 @@ "type": { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -15361,10 +18500,12 @@ "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "speciesSpecies", @@ -15373,15 +18514,18 @@ "type": { "kind": "OBJECT", "name": "Species", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -15395,10 +18539,12 @@ "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "starshipsStarship", @@ -15407,15 +18553,18 @@ "type": { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -15429,10 +18578,12 @@ "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "vehiclesVehicle", @@ -15441,15 +18592,18 @@ "type": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -15463,10 +18617,12 @@ "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "filmsFilm", @@ -15475,15 +18631,18 @@ "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -15497,10 +18656,12 @@ "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "homeworldPlanet", @@ -15509,15 +18670,18 @@ "type": { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -15531,10 +18695,12 @@ "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "speciesSpecies", @@ -15543,15 +18709,18 @@ "type": { "kind": "OBJECT", "name": "Species", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -15565,10 +18734,12 @@ "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "starshipsStarship", @@ -15577,15 +18748,18 @@ "type": { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -15599,10 +18773,12 @@ "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "vehiclesVehicle", @@ -15611,15 +18787,18 @@ "type": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -15633,10 +18812,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "averageLifespan", @@ -15645,10 +18826,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "classification", @@ -15657,10 +18840,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt", @@ -15672,11 +18857,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "designation", @@ -15685,10 +18873,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "eyeColor", @@ -15703,12 +18893,16 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "hairColor", @@ -15723,12 +18917,16 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -15740,11 +18938,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -15756,11 +18957,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "language", @@ -15769,10 +18973,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name", @@ -15784,11 +18990,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "skinColor", @@ -15803,12 +19012,16 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -15820,16 +19033,20 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -15848,11 +19065,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciesSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -15866,11 +19087,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciesSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mutation_in", @@ -15884,11 +19109,15 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains", @@ -15896,9 +19125,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_every", @@ -15912,11 +19143,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_some", @@ -15930,11 +19165,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "node", @@ -15942,13 +19181,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesSubscriptionFilterNode", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -15961,9 +19203,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_not", @@ -15971,9 +19215,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_in", @@ -15987,11 +19233,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_not_in", @@ -16005,11 +19255,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_lt", @@ -16017,9 +19271,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_lte", @@ -16027,9 +19283,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_gt", @@ -16037,9 +19295,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_gte", @@ -16047,9 +19307,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan", @@ -16057,9 +19319,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_not", @@ -16067,9 +19331,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_in", @@ -16083,11 +19349,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_not_in", @@ -16101,11 +19371,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_lt", @@ -16113,9 +19387,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_lte", @@ -16123,9 +19399,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_gt", @@ -16133,9 +19411,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_gte", @@ -16143,9 +19423,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification", @@ -16153,9 +19435,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_not", @@ -16163,9 +19447,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_in", @@ -16179,11 +19465,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_not_in", @@ -16197,11 +19487,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_lt", @@ -16209,9 +19503,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_lte", @@ -16219,9 +19515,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_gt", @@ -16229,9 +19527,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_gte", @@ -16239,9 +19539,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_contains", @@ -16249,9 +19551,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_not_contains", @@ -16259,9 +19563,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_starts_with", @@ -16269,9 +19575,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_not_starts_with", @@ -16279,9 +19587,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_ends_with", @@ -16289,9 +19599,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_not_ends_with", @@ -16299,9 +19611,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt", @@ -16309,9 +19623,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -16319,9 +19635,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -16335,11 +19653,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -16353,11 +19675,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -16365,9 +19691,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -16375,9 +19703,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -16385,9 +19715,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -16395,9 +19727,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation", @@ -16405,9 +19739,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_not", @@ -16415,9 +19751,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_in", @@ -16431,11 +19769,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_not_in", @@ -16449,11 +19791,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_lt", @@ -16461,9 +19807,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_lte", @@ -16471,9 +19819,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_gt", @@ -16481,9 +19831,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_gte", @@ -16491,9 +19843,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_contains", @@ -16501,9 +19855,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_not_contains", @@ -16511,9 +19867,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_starts_with", @@ -16521,9 +19879,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_not_starts_with", @@ -16531,9 +19891,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_ends_with", @@ -16541,9 +19903,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_not_ends_with", @@ -16551,9 +19915,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -16561,9 +19927,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -16571,9 +19939,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -16587,11 +19957,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -16605,11 +19979,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -16617,9 +19995,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -16627,9 +20007,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -16637,9 +20019,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -16647,9 +20031,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -16657,9 +20043,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -16667,9 +20055,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -16677,9 +20067,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -16687,9 +20079,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -16697,9 +20091,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -16707,9 +20103,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -16717,9 +20115,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -16727,9 +20127,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language", @@ -16737,9 +20139,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_not", @@ -16747,9 +20151,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_in", @@ -16763,11 +20169,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_not_in", @@ -16781,11 +20191,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_lt", @@ -16793,9 +20207,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_lte", @@ -16803,9 +20219,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_gt", @@ -16813,9 +20231,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_gte", @@ -16823,9 +20243,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_contains", @@ -16833,9 +20255,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_not_contains", @@ -16843,9 +20267,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_starts_with", @@ -16853,9 +20279,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_not_starts_with", @@ -16863,9 +20291,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_ends_with", @@ -16873,9 +20303,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_not_ends_with", @@ -16883,9 +20315,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -16893,9 +20327,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not", @@ -16903,9 +20339,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_in", @@ -16919,11 +20357,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_in", @@ -16937,11 +20379,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lt", @@ -16949,9 +20395,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lte", @@ -16959,9 +20407,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gt", @@ -16969,9 +20419,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gte", @@ -16979,9 +20431,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_contains", @@ -16989,9 +20443,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_contains", @@ -16999,9 +20455,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_starts_with", @@ -17009,9 +20467,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_starts_with", @@ -17019,9 +20479,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_ends_with", @@ -17029,9 +20491,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_ends_with", @@ -17039,9 +20503,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -17049,9 +20515,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -17059,9 +20527,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -17075,11 +20545,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -17093,11 +20567,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -17105,9 +20583,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -17115,9 +20595,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -17125,9 +20607,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -17135,9 +20619,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_every", @@ -17145,9 +20631,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_some", @@ -17155,9 +20643,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_none", @@ -17165,9 +20655,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people_every", @@ -17175,9 +20667,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people_some", @@ -17185,9 +20679,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people_none", @@ -17195,13 +20691,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -17218,11 +20717,14 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "node", @@ -17231,10 +20733,12 @@ "type": { "kind": "OBJECT", "name": "Species", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedFields", @@ -17249,12 +20753,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "previousValues", @@ -17263,15 +20771,18 @@ "type": { "kind": "OBJECT", "name": "SpeciesPreviousValues", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -17284,9 +20795,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId", @@ -17297,10 +20810,13 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -17308,9 +20824,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl", @@ -17318,9 +20836,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "producers", @@ -17334,11 +20854,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate", @@ -17346,9 +20870,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -17359,10 +20885,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "charactersIds", @@ -17376,11 +20905,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters", @@ -17394,11 +20927,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmcharactersPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planetsIds", @@ -17412,11 +20949,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets", @@ -17430,11 +20971,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmplanetsPlanet", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -17448,11 +20993,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -17466,11 +21015,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -17484,11 +21037,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -17502,11 +21059,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -17520,11 +21081,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -17538,15 +21103,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -17559,9 +21129,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -17575,11 +21147,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender", @@ -17587,9 +21163,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -17603,11 +21181,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -17615,9 +21197,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -17625,9 +21209,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass", @@ -17635,9 +21221,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -17648,10 +21236,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -17665,11 +21256,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworldId", @@ -17677,9 +21272,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworld", @@ -17687,9 +21284,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonhomeworldPlanet", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -17703,11 +21302,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -17721,11 +21324,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -17739,11 +21346,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -17757,11 +21368,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -17775,11 +21390,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -17793,11 +21412,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -17811,11 +21434,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -17829,15 +21456,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -17851,10 +21483,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "class", @@ -17863,10 +21497,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "consumables", @@ -17875,10 +21511,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "costInCredits", @@ -17887,10 +21525,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt", @@ -17902,11 +21542,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "crew", @@ -17915,10 +21558,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "hyperdriveRating", @@ -17927,10 +21572,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -17942,11 +21589,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -17958,11 +21608,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "length", @@ -17971,10 +21624,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "manufacturer", @@ -17989,12 +21644,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -18003,10 +21662,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mglt", @@ -18015,10 +21676,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name", @@ -18030,11 +21693,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "passengers", @@ -18043,10 +21709,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -18058,16 +21726,20 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -18086,11 +21758,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshipSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -18104,11 +21780,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshipSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mutation_in", @@ -18122,11 +21802,15 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains", @@ -18134,9 +21818,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_every", @@ -18150,11 +21836,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_some", @@ -18168,11 +21858,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "node", @@ -18180,13 +21874,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipSubscriptionFilterNode", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -18199,9 +21896,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_not", @@ -18209,9 +21908,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_in", @@ -18225,11 +21926,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_not_in", @@ -18243,11 +21948,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_lt", @@ -18255,9 +21964,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_lte", @@ -18265,9 +21976,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_gt", @@ -18275,9 +21988,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_gte", @@ -18285,9 +22000,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -18295,9 +22012,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not", @@ -18305,9 +22024,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_in", @@ -18321,11 +22042,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_in", @@ -18339,11 +22064,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_lt", @@ -18351,9 +22080,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_lte", @@ -18361,9 +22092,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_gt", @@ -18371,9 +22104,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_gte", @@ -18381,9 +22116,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_contains", @@ -18391,9 +22128,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_contains", @@ -18401,9 +22140,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_starts_with", @@ -18411,9 +22152,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_starts_with", @@ -18421,9 +22164,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_ends_with", @@ -18431,9 +22176,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_ends_with", @@ -18441,9 +22188,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -18451,9 +22200,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not", @@ -18461,9 +22212,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_in", @@ -18477,11 +22230,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_in", @@ -18495,11 +22252,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_lt", @@ -18507,9 +22268,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_lte", @@ -18517,9 +22280,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_gt", @@ -18527,9 +22292,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_gte", @@ -18537,9 +22304,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_contains", @@ -18547,9 +22316,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_contains", @@ -18557,9 +22328,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_starts_with", @@ -18567,9 +22340,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_starts_with", @@ -18577,9 +22352,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_ends_with", @@ -18587,9 +22364,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_ends_with", @@ -18597,9 +22376,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -18607,9 +22388,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_not", @@ -18617,9 +22400,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_in", @@ -18633,11 +22418,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_not_in", @@ -18651,11 +22440,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_lt", @@ -18663,9 +22456,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_lte", @@ -18673,9 +22468,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_gt", @@ -18683,9 +22480,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_gte", @@ -18693,9 +22492,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt", @@ -18703,9 +22504,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -18713,9 +22516,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -18729,11 +22534,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -18747,11 +22556,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -18759,9 +22572,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -18769,9 +22584,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -18779,9 +22596,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -18789,9 +22608,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -18799,9 +22620,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_not", @@ -18809,9 +22632,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_in", @@ -18825,11 +22650,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_not_in", @@ -18843,11 +22672,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_lt", @@ -18855,9 +22688,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_lte", @@ -18865,9 +22700,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_gt", @@ -18875,9 +22712,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_gte", @@ -18885,9 +22724,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating", @@ -18895,9 +22736,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_not", @@ -18905,9 +22748,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_in", @@ -18921,11 +22766,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_not_in", @@ -18939,11 +22788,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_lt", @@ -18951,9 +22804,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_lte", @@ -18961,9 +22816,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_gt", @@ -18971,9 +22828,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_gte", @@ -18981,9 +22840,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -18991,9 +22852,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -19001,9 +22864,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -19017,11 +22882,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -19035,11 +22904,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -19047,9 +22920,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -19057,9 +22932,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -19067,9 +22944,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -19077,9 +22956,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -19087,9 +22968,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -19097,9 +22980,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -19107,9 +22992,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -19117,9 +23004,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -19127,9 +23016,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -19137,9 +23028,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -19147,9 +23040,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -19157,9 +23052,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -19167,9 +23064,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_not", @@ -19177,9 +23076,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_in", @@ -19193,11 +23094,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_not_in", @@ -19211,11 +23116,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_lt", @@ -19223,9 +23132,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_lte", @@ -19233,9 +23144,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_gt", @@ -19243,9 +23156,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_gte", @@ -19253,9 +23168,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -19263,9 +23180,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_not", @@ -19273,9 +23192,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_in", @@ -19289,11 +23210,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_not_in", @@ -19307,11 +23232,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_lt", @@ -19319,9 +23248,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_lte", @@ -19329,9 +23260,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_gt", @@ -19339,9 +23272,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_gte", @@ -19349,9 +23284,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt", @@ -19359,9 +23296,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_not", @@ -19369,9 +23308,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_in", @@ -19385,11 +23326,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_not_in", @@ -19403,11 +23348,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_lt", @@ -19415,9 +23364,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_lte", @@ -19425,9 +23376,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_gt", @@ -19435,9 +23388,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_gte", @@ -19445,9 +23400,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -19455,9 +23412,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not", @@ -19465,9 +23424,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_in", @@ -19481,11 +23442,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_in", @@ -19499,11 +23464,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lt", @@ -19511,9 +23480,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lte", @@ -19521,9 +23492,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gt", @@ -19531,9 +23504,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gte", @@ -19541,9 +23516,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_contains", @@ -19551,9 +23528,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_contains", @@ -19561,9 +23540,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_starts_with", @@ -19571,9 +23552,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_starts_with", @@ -19581,9 +23564,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_ends_with", @@ -19591,9 +23576,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_ends_with", @@ -19601,9 +23588,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -19611,9 +23600,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_not", @@ -19621,9 +23612,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_in", @@ -19637,11 +23630,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_not_in", @@ -19655,11 +23652,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_lt", @@ -19667,9 +23668,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_lte", @@ -19677,9 +23680,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_gt", @@ -19687,9 +23692,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_gte", @@ -19697,9 +23704,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -19707,9 +23716,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -19717,9 +23728,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -19733,11 +23746,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -19751,11 +23768,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -19763,9 +23784,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -19773,9 +23796,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -19783,9 +23808,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -19793,9 +23820,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_every", @@ -19803,9 +23832,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_some", @@ -19813,9 +23844,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_none", @@ -19823,9 +23856,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_every", @@ -19833,9 +23868,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_some", @@ -19843,9 +23880,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_none", @@ -19853,13 +23892,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -19876,11 +23918,14 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "node", @@ -19889,10 +23934,12 @@ "type": { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedFields", @@ -19907,12 +23954,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "previousValues", @@ -19921,15 +23972,18 @@ "type": { "kind": "OBJECT", "name": "StarshipPreviousValues", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -19942,9 +23996,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId", @@ -19955,10 +24011,13 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -19966,9 +24025,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl", @@ -19976,9 +24037,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "producers", @@ -19992,11 +24055,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate", @@ -20004,9 +24071,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -20017,10 +24086,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "charactersIds", @@ -20034,11 +24106,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters", @@ -20052,11 +24128,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmcharactersPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planetsIds", @@ -20070,11 +24150,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets", @@ -20088,11 +24172,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmplanetsPlanet", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -20106,11 +24194,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -20124,11 +24216,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -20142,11 +24238,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -20160,11 +24260,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -20178,11 +24282,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -20196,15 +24304,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -20217,9 +24330,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -20233,11 +24348,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender", @@ -20245,9 +24364,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -20261,11 +24382,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -20273,9 +24398,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -20283,9 +24410,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass", @@ -20293,9 +24422,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -20306,10 +24437,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -20323,11 +24457,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworldId", @@ -20335,9 +24473,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworld", @@ -20345,9 +24485,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonhomeworldPlanet", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -20361,11 +24503,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -20379,11 +24525,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -20397,11 +24547,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -20415,11 +24569,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -20433,11 +24591,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -20451,11 +24613,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -20469,11 +24635,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -20487,15 +24657,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -20512,18 +24687,22 @@ "type": { "kind": "INPUT_OBJECT", "name": "AssetSubscriptionFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "AssetSubscriptionPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Film", @@ -20535,18 +24714,22 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmSubscriptionFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "FilmSubscriptionPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Person", @@ -20558,18 +24741,22 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonSubscriptionFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "PersonSubscriptionPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Planet", @@ -20581,18 +24768,22 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetSubscriptionFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "PlanetSubscriptionPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Species", @@ -20604,18 +24795,22 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesSubscriptionFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "SpeciesSubscriptionPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Starship", @@ -20627,18 +24822,22 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipSubscriptionFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "StarshipSubscriptionPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Vehicle", @@ -20650,23 +24849,28 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleSubscriptionFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "VehicleSubscriptionPayload", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -20679,9 +24883,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle", @@ -20689,9 +24895,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -20699,9 +24907,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -20712,10 +24922,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType", @@ -20723,9 +24936,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size", @@ -20733,9 +24948,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url", @@ -20743,9 +24960,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width", @@ -20753,13 +24972,16 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -20772,9 +24994,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId", @@ -20782,9 +25006,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -20795,10 +25021,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -20806,9 +25035,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl", @@ -20816,9 +25047,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "producers", @@ -20832,11 +25065,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate", @@ -20844,9 +25081,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -20854,9 +25093,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "charactersIds", @@ -20870,11 +25111,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters", @@ -20888,11 +25133,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmcharactersPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planetsIds", @@ -20906,11 +25155,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets", @@ -20924,11 +25177,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmplanetsPlanet", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -20942,11 +25199,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -20960,11 +25221,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -20978,11 +25243,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -20996,11 +25265,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -21014,11 +25287,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -21032,15 +25309,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -21053,9 +25335,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -21069,11 +25353,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender", @@ -21081,9 +25369,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -21097,11 +25387,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -21109,9 +25403,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -21122,10 +25418,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -21133,9 +25432,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass", @@ -21143,9 +25444,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -21153,9 +25456,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -21169,11 +25474,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworldId", @@ -21181,9 +25490,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworld", @@ -21191,9 +25502,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonhomeworldPlanet", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -21207,11 +25520,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -21225,11 +25542,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -21243,11 +25564,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -21261,11 +25586,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -21279,11 +25608,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -21297,11 +25630,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -21315,11 +25652,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -21333,15 +25674,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -21360,11 +25706,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter", @@ -21372,9 +25722,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity", @@ -21382,9 +25734,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -21395,10 +25749,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -21406,9 +25763,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -21416,9 +25775,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod", @@ -21426,9 +25787,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population", @@ -21436,9 +25799,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod", @@ -21446,9 +25811,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater", @@ -21456,9 +25823,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "terrain", @@ -21472,11 +25841,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -21490,11 +25863,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -21508,11 +25885,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residentsIds", @@ -21526,11 +25907,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents", @@ -21544,15 +25929,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetresidentsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -21565,9 +25955,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan", @@ -21575,9 +25967,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification", @@ -21585,9 +25979,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation", @@ -21595,9 +25991,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -21611,11 +26009,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -21629,11 +26031,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -21644,10 +26050,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -21655,9 +26064,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language", @@ -21665,9 +26076,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -21675,9 +26088,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -21691,11 +26106,15 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -21709,11 +26128,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -21727,11 +26150,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciesfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "peopleIds", @@ -21745,11 +26172,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people", @@ -21763,15 +26194,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciespeoplePerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -21784,9 +26220,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -21794,9 +26232,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -21804,9 +26244,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -21814,9 +26256,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -21824,9 +26268,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating", @@ -21834,9 +26280,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -21847,10 +26295,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -21858,9 +26309,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -21868,9 +26321,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -21884,11 +26339,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -21896,9 +26355,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt", @@ -21906,9 +26367,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -21916,9 +26379,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -21926,9 +26391,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -21942,11 +26409,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -21960,11 +26431,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshipfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -21978,11 +26453,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -21996,15 +26475,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshippilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -22017,9 +26501,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -22027,9 +26513,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -22037,9 +26525,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -22047,9 +26537,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -22057,9 +26549,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -22070,10 +26564,13 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -22081,9 +26578,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -22091,9 +26590,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "manufacturer", @@ -22107,11 +26608,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -22119,9 +26624,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model", @@ -22129,9 +26636,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -22139,9 +26648,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -22149,9 +26660,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -22165,11 +26678,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -22183,11 +26700,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclefilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilotsIds", @@ -22201,11 +26722,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots", @@ -22219,15 +26744,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehiclepilotsPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -22241,10 +26771,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "class", @@ -22253,10 +26785,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "consumables", @@ -22265,10 +26799,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "costInCredits", @@ -22277,10 +26813,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt", @@ -22292,11 +26830,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "crew", @@ -22305,10 +26846,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -22320,11 +26863,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -22336,11 +26882,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "length", @@ -22349,10 +26898,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "manufacturer", @@ -22367,12 +26918,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -22381,10 +26936,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "model", @@ -22393,10 +26950,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name", @@ -22408,11 +26967,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "passengers", @@ -22421,10 +26983,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -22436,16 +27000,20 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -22464,11 +27032,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehicleSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -22482,11 +27054,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehicleSubscriptionFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mutation_in", @@ -22500,11 +27076,15 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains", @@ -22512,9 +27092,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_every", @@ -22528,11 +27110,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedFields_contains_some", @@ -22546,11 +27132,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "node", @@ -22558,13 +27148,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleSubscriptionFilterNode", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -22577,9 +27170,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_not", @@ -22587,9 +27182,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_in", @@ -22603,11 +27200,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_not_in", @@ -22621,11 +27222,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_lt", @@ -22633,9 +27238,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_lte", @@ -22643,9 +27250,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_gt", @@ -22653,9 +27262,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_gte", @@ -22663,9 +27274,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -22673,9 +27286,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not", @@ -22683,9 +27298,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_in", @@ -22699,11 +27316,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_in", @@ -22717,11 +27338,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_lt", @@ -22729,9 +27354,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_lte", @@ -22739,9 +27366,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_gt", @@ -22749,9 +27378,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_gte", @@ -22759,9 +27390,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_contains", @@ -22769,9 +27402,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_contains", @@ -22779,9 +27414,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_starts_with", @@ -22789,9 +27426,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_starts_with", @@ -22799,9 +27438,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_ends_with", @@ -22809,9 +27450,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_ends_with", @@ -22819,9 +27462,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -22829,9 +27474,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not", @@ -22839,9 +27486,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_in", @@ -22855,11 +27504,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_in", @@ -22873,11 +27526,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_lt", @@ -22885,9 +27542,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_lte", @@ -22895,9 +27554,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_gt", @@ -22905,9 +27566,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_gte", @@ -22915,9 +27578,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_contains", @@ -22925,9 +27590,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_contains", @@ -22935,9 +27602,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_starts_with", @@ -22945,9 +27614,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_starts_with", @@ -22955,9 +27626,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_ends_with", @@ -22965,9 +27638,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_ends_with", @@ -22975,9 +27650,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -22985,9 +27662,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_not", @@ -22995,9 +27674,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_in", @@ -23011,11 +27692,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_not_in", @@ -23029,11 +27714,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_lt", @@ -23041,9 +27730,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_lte", @@ -23051,9 +27742,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_gt", @@ -23061,9 +27754,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_gte", @@ -23071,9 +27766,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt", @@ -23081,9 +27778,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -23091,9 +27790,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -23107,11 +27808,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -23125,11 +27830,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -23137,9 +27846,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -23147,9 +27858,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -23157,9 +27870,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -23167,9 +27882,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -23177,9 +27894,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_not", @@ -23187,9 +27906,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_in", @@ -23203,11 +27924,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_not_in", @@ -23221,11 +27946,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_lt", @@ -23233,9 +27962,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_lte", @@ -23243,9 +27974,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_gt", @@ -23253,9 +27986,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_gte", @@ -23263,9 +27998,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -23273,9 +28010,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -23283,9 +28022,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -23299,11 +28040,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -23317,11 +28062,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -23329,9 +28078,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -23339,9 +28090,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -23349,9 +28102,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -23359,9 +28114,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -23369,9 +28126,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -23379,9 +28138,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -23389,9 +28150,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -23399,9 +28162,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -23409,9 +28174,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -23419,9 +28186,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -23429,9 +28198,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -23439,9 +28210,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -23449,9 +28222,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_not", @@ -23459,9 +28234,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_in", @@ -23475,11 +28252,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_not_in", @@ -23493,11 +28274,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_lt", @@ -23505,9 +28290,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_lte", @@ -23515,9 +28302,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_gt", @@ -23525,9 +28314,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_gte", @@ -23535,9 +28326,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -23545,9 +28338,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_not", @@ -23555,9 +28350,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_in", @@ -23571,11 +28368,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_not_in", @@ -23589,11 +28390,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_lt", @@ -23601,9 +28406,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_lte", @@ -23611,9 +28418,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_gt", @@ -23621,9 +28430,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_gte", @@ -23631,9 +28442,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model", @@ -23641,9 +28454,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_not", @@ -23651,9 +28466,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_in", @@ -23667,11 +28484,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_not_in", @@ -23685,11 +28506,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_lt", @@ -23697,9 +28522,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_lte", @@ -23707,9 +28534,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_gt", @@ -23717,9 +28546,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_gte", @@ -23727,9 +28558,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_contains", @@ -23737,9 +28570,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_not_contains", @@ -23747,9 +28582,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_starts_with", @@ -23757,9 +28594,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_not_starts_with", @@ -23767,9 +28606,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_ends_with", @@ -23777,9 +28618,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_not_ends_with", @@ -23787,9 +28630,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -23797,9 +28642,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not", @@ -23807,9 +28654,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_in", @@ -23823,11 +28672,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_in", @@ -23841,11 +28694,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lt", @@ -23853,9 +28710,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lte", @@ -23863,9 +28722,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gt", @@ -23873,9 +28734,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gte", @@ -23883,9 +28746,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_contains", @@ -23893,9 +28758,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_contains", @@ -23903,9 +28770,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_starts_with", @@ -23913,9 +28782,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_starts_with", @@ -23923,9 +28794,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_ends_with", @@ -23933,9 +28806,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_ends_with", @@ -23943,9 +28818,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -23953,9 +28830,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_not", @@ -23963,9 +28842,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_in", @@ -23979,11 +28860,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_not_in", @@ -23997,11 +28882,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_lt", @@ -24009,9 +28898,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_lte", @@ -24019,9 +28910,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_gt", @@ -24029,9 +28922,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_gte", @@ -24039,9 +28934,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -24049,9 +28946,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -24059,9 +28958,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -24075,11 +28976,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -24093,11 +28998,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -24105,9 +29014,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -24115,9 +29026,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -24125,9 +29038,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -24135,9 +29050,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_every", @@ -24145,9 +29062,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_some", @@ -24155,9 +29074,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_none", @@ -24165,9 +29086,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_every", @@ -24175,9 +29098,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_some", @@ -24185,9 +29110,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_none", @@ -24195,13 +29122,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -24218,11 +29148,14 @@ "ofType": { "kind": "ENUM", "name": "_ModelMutationType", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "node", @@ -24231,10 +29164,12 @@ "type": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedFields", @@ -24249,12 +29184,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "previousValues", @@ -24263,15 +29202,18 @@ "type": { "kind": "OBJECT", "name": "VehiclePreviousValues", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -24284,9 +29226,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId", @@ -24297,10 +29241,13 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -24308,9 +29255,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl", @@ -24318,9 +29267,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "producers", @@ -24334,11 +29285,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate", @@ -24346,9 +29301,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -24359,10 +29316,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "charactersIds", @@ -24376,11 +29336,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters", @@ -24394,11 +29358,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmcharactersPerson", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planetsIds", @@ -24412,11 +29380,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets", @@ -24430,11 +29402,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmplanetsPlanet", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -24448,11 +29424,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -24466,11 +29446,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -24484,11 +29468,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -24502,11 +29490,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -24520,11 +29512,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -24538,15 +29534,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -24559,9 +29560,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "eyeColor", @@ -24575,11 +29578,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender", @@ -24587,9 +29594,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hairColor", @@ -24603,11 +29612,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -24615,9 +29628,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -24625,9 +29640,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass", @@ -24635,9 +29652,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -24648,10 +29667,13 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skinColor", @@ -24665,11 +29687,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworldId", @@ -24677,9 +29703,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworld", @@ -24687,9 +29715,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonhomeworldPlanet", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "filmsIds", @@ -24703,11 +29733,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films", @@ -24721,11 +29755,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonfilmsFilm", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "speciesIds", @@ -24739,11 +29777,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species", @@ -24757,11 +29799,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonspeciesSpecies", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starshipsIds", @@ -24775,11 +29821,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships", @@ -24793,11 +29843,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonstarshipsStarship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehiclesIds", @@ -24811,11 +29865,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles", @@ -24829,15 +29887,20 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonvehiclesVehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -24850,22 +29913,26 @@ "name": "CREATED", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "UPDATED", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "DELETED", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -24882,11 +29949,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "fileName", @@ -24898,11 +29968,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "handle", @@ -24914,11 +29987,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "height", @@ -24927,10 +30003,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -24942,11 +30020,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mimeType", @@ -24955,10 +30036,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "size", @@ -24970,11 +30053,14 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -24986,11 +30072,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "url", @@ -25002,11 +30091,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "width", @@ -25015,10 +30107,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, @@ -25026,10 +30120,12 @@ { "kind": "INTERFACE", "name": "Node", - "ofType": null + "ofType": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -25048,11 +30144,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "AssetFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -25066,11 +30166,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "AssetFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt", @@ -25078,9 +30182,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -25088,9 +30194,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -25104,11 +30212,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -25122,11 +30234,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -25134,9 +30250,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -25144,9 +30262,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -25154,9 +30274,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -25164,9 +30286,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName", @@ -25174,9 +30298,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_not", @@ -25184,9 +30310,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_in", @@ -25200,11 +30328,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_not_in", @@ -25218,11 +30350,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_lt", @@ -25230,9 +30366,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_lte", @@ -25240,9 +30378,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_gt", @@ -25250,9 +30390,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_gte", @@ -25260,9 +30402,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_contains", @@ -25270,9 +30414,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_not_contains", @@ -25280,9 +30426,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_starts_with", @@ -25290,9 +30438,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_not_starts_with", @@ -25300,9 +30450,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_ends_with", @@ -25310,9 +30462,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "fileName_not_ends_with", @@ -25320,9 +30474,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle", @@ -25330,9 +30486,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_not", @@ -25340,9 +30498,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_in", @@ -25356,11 +30516,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_not_in", @@ -25374,11 +30538,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_lt", @@ -25386,9 +30554,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_lte", @@ -25396,9 +30566,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_gt", @@ -25406,9 +30578,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_gte", @@ -25416,9 +30590,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_contains", @@ -25426,9 +30602,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_not_contains", @@ -25436,9 +30614,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_starts_with", @@ -25446,9 +30626,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_not_starts_with", @@ -25456,9 +30638,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_ends_with", @@ -25466,9 +30650,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "handle_not_ends_with", @@ -25476,9 +30662,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -25486,9 +30674,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_not", @@ -25496,9 +30686,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_in", @@ -25512,11 +30704,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_not_in", @@ -25530,11 +30726,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_lt", @@ -25542,9 +30742,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_lte", @@ -25552,9 +30754,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_gt", @@ -25562,9 +30766,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_gte", @@ -25572,9 +30778,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -25582,9 +30790,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -25592,9 +30802,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -25608,11 +30820,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -25626,11 +30842,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -25638,9 +30858,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -25648,9 +30870,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -25658,9 +30882,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -25668,9 +30894,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -25678,9 +30906,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -25688,9 +30918,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -25698,9 +30930,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -25708,9 +30942,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -25718,9 +30954,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -25728,9 +30966,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType", @@ -25738,9 +30978,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_not", @@ -25748,9 +30990,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_in", @@ -25764,11 +31008,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_not_in", @@ -25782,11 +31030,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_lt", @@ -25794,9 +31046,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_lte", @@ -25804,9 +31058,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_gt", @@ -25814,9 +31070,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_gte", @@ -25824,9 +31082,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_contains", @@ -25834,9 +31094,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_not_contains", @@ -25844,9 +31106,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_starts_with", @@ -25854,9 +31118,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_not_starts_with", @@ -25864,9 +31130,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_ends_with", @@ -25874,9 +31142,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mimeType_not_ends_with", @@ -25884,9 +31154,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size", @@ -25894,9 +31166,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_not", @@ -25904,9 +31178,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_in", @@ -25920,11 +31196,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_not_in", @@ -25938,11 +31218,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_lt", @@ -25950,9 +31234,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_lte", @@ -25960,9 +31246,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_gt", @@ -25970,9 +31258,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "size_gte", @@ -25980,9 +31270,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -25990,9 +31282,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -26000,9 +31294,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -26016,11 +31312,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -26034,11 +31334,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -26046,9 +31350,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -26056,9 +31362,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -26066,9 +31374,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -26076,9 +31386,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url", @@ -26086,9 +31398,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_not", @@ -26096,9 +31410,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_in", @@ -26112,11 +31428,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_not_in", @@ -26130,11 +31450,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_lt", @@ -26142,9 +31466,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_lte", @@ -26152,9 +31478,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_gt", @@ -26162,9 +31490,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_gte", @@ -26172,9 +31502,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_contains", @@ -26182,9 +31514,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_not_contains", @@ -26192,9 +31526,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_starts_with", @@ -26202,9 +31538,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_not_starts_with", @@ -26212,9 +31550,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_ends_with", @@ -26222,9 +31562,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "url_not_ends_with", @@ -26232,9 +31574,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width", @@ -26242,9 +31586,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_not", @@ -26252,9 +31598,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_in", @@ -26268,11 +31616,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_not_in", @@ -26286,11 +31638,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_lt", @@ -26298,9 +31654,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_lte", @@ -26308,9 +31666,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_gt", @@ -26318,9 +31678,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "width_gte", @@ -26328,13 +31690,16 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -26347,124 +31712,145 @@ "name": "createdAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "fileName_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "fileName_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "handle_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "handle_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "height_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "height_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mimeType_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mimeType_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "size_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "size_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "url_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "url_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "width_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "width_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "SCALAR", @@ -26472,7 +31858,8 @@ "description": "", "inputFields": null, "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -26489,9 +31876,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -26499,9 +31888,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -26509,9 +31900,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -26519,9 +31912,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -26529,9 +31924,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -26539,9 +31936,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -26549,9 +31948,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -26563,12 +31964,16 @@ "ofType": { "kind": "OBJECT", "name": "Person", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt", @@ -26580,11 +31985,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "director", @@ -26593,10 +32001,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "episodeId", @@ -26608,11 +32018,14 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -26624,11 +32037,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -26640,11 +32056,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "openingCrawl", @@ -26653,10 +32072,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "planets", @@ -26668,9 +32089,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -26678,9 +32101,11 @@ "type": { "kind": "ENUM", "name": "PlanetOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -26688,9 +32113,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -26698,9 +32125,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -26708,9 +32137,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -26718,9 +32149,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -26728,9 +32161,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -26742,12 +32177,16 @@ "ofType": { "kind": "OBJECT", "name": "Planet", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "producers", @@ -26762,12 +32201,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "releaseDate", @@ -26776,10 +32219,12 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "species", @@ -26791,9 +32236,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -26801,9 +32248,11 @@ "type": { "kind": "ENUM", "name": "SpeciesOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -26811,9 +32260,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -26821,9 +32272,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -26831,9 +32284,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -26841,9 +32296,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -26851,9 +32308,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -26865,12 +32324,16 @@ "ofType": { "kind": "OBJECT", "name": "Species", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "starships", @@ -26882,9 +32345,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -26892,9 +32357,11 @@ "type": { "kind": "ENUM", "name": "StarshipOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -26902,9 +32369,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -26912,9 +32381,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -26922,9 +32393,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -26932,9 +32405,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -26942,9 +32417,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -26956,12 +32433,16 @@ "ofType": { "kind": "OBJECT", "name": "Starship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "title", @@ -26973,11 +32454,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -26989,11 +32473,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "vehicles", @@ -27005,9 +32492,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -27015,9 +32504,11 @@ "type": { "kind": "ENUM", "name": "VehicleOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -27025,9 +32516,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -27035,9 +32528,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -27045,9 +32540,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -27055,9 +32552,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -27065,9 +32564,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -27079,12 +32580,16 @@ "ofType": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_charactersMeta", @@ -27096,9 +32601,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -27106,9 +32613,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -27116,9 +32625,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -27126,9 +32637,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -27136,9 +32649,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -27146,9 +32661,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -27156,9 +32673,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -27167,11 +32686,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_planetsMeta", @@ -27183,9 +32705,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -27193,9 +32717,11 @@ "type": { "kind": "ENUM", "name": "PlanetOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -27203,9 +32729,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -27213,9 +32741,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -27223,9 +32753,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -27233,9 +32765,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -27243,9 +32777,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -27254,11 +32790,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_speciesMeta", @@ -27270,9 +32809,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -27280,9 +32821,11 @@ "type": { "kind": "ENUM", "name": "SpeciesOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -27290,9 +32833,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -27300,9 +32845,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -27310,9 +32857,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -27320,9 +32869,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -27330,9 +32881,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -27341,11 +32894,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_starshipsMeta", @@ -27357,9 +32913,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -27367,9 +32925,11 @@ "type": { "kind": "ENUM", "name": "StarshipOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -27377,9 +32937,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -27387,9 +32949,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -27397,9 +32961,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -27407,9 +32973,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -27417,9 +32985,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -27428,11 +32998,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_vehiclesMeta", @@ -27444,9 +33017,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -27454,9 +33029,11 @@ "type": { "kind": "ENUM", "name": "VehicleOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -27464,9 +33041,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -27474,9 +33053,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -27484,9 +33065,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -27494,9 +33077,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -27504,9 +33089,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -27515,11 +33102,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, @@ -27527,10 +33117,12 @@ { "kind": "INTERFACE", "name": "Node", - "ofType": null + "ofType": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -27549,11 +33141,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -27567,11 +33163,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt", @@ -27579,9 +33179,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -27589,9 +33191,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -27605,11 +33209,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -27623,11 +33231,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -27635,9 +33247,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -27645,9 +33259,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -27655,9 +33271,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -27665,9 +33283,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director", @@ -27675,9 +33295,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_not", @@ -27685,9 +33307,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_in", @@ -27701,11 +33325,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_not_in", @@ -27719,11 +33347,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_lt", @@ -27731,9 +33363,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_lte", @@ -27741,9 +33375,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_gt", @@ -27751,9 +33387,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_gte", @@ -27761,9 +33399,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_contains", @@ -27771,9 +33411,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_not_contains", @@ -27781,9 +33423,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_starts_with", @@ -27791,9 +33435,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_not_starts_with", @@ -27801,9 +33447,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_ends_with", @@ -27811,9 +33459,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "director_not_ends_with", @@ -27821,9 +33471,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId", @@ -27831,9 +33483,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_not", @@ -27841,9 +33495,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_in", @@ -27857,11 +33513,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_not_in", @@ -27875,11 +33535,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_lt", @@ -27887,9 +33551,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_lte", @@ -27897,9 +33563,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_gt", @@ -27907,9 +33575,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "episodeId_gte", @@ -27917,9 +33587,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -27927,9 +33599,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -27937,9 +33611,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -27953,11 +33629,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -27971,11 +33651,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -27983,9 +33667,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -27993,9 +33679,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -28003,9 +33691,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -28013,9 +33703,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -28023,9 +33715,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -28033,9 +33727,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -28043,9 +33739,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -28053,9 +33751,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -28063,9 +33763,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -28073,9 +33775,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -28083,9 +33787,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -28093,9 +33799,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl", @@ -28103,9 +33811,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_not", @@ -28113,9 +33823,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_in", @@ -28129,11 +33841,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_not_in", @@ -28147,11 +33863,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_lt", @@ -28159,9 +33879,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_lte", @@ -28169,9 +33891,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_gt", @@ -28179,9 +33903,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_gte", @@ -28189,9 +33915,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_contains", @@ -28199,9 +33927,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_not_contains", @@ -28209,9 +33939,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_starts_with", @@ -28219,9 +33951,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_not_starts_with", @@ -28229,9 +33963,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_ends_with", @@ -28239,9 +33975,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "openingCrawl_not_ends_with", @@ -28249,9 +33987,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate", @@ -28259,9 +33999,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_not", @@ -28269,9 +34011,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_in", @@ -28285,11 +34029,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_not_in", @@ -28303,11 +34051,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_lt", @@ -28315,9 +34067,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_lte", @@ -28325,9 +34079,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_gt", @@ -28335,9 +34091,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "releaseDate_gte", @@ -28345,9 +34103,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -28355,9 +34115,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_not", @@ -28365,9 +34127,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_in", @@ -28381,11 +34145,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_not_in", @@ -28399,11 +34167,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_lt", @@ -28411,9 +34183,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_lte", @@ -28421,9 +34195,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_gt", @@ -28431,9 +34207,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_gte", @@ -28441,9 +34219,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_contains", @@ -28451,9 +34231,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_not_contains", @@ -28461,9 +34243,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_starts_with", @@ -28471,9 +34255,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_not_starts_with", @@ -28481,9 +34267,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_ends_with", @@ -28491,9 +34279,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title_not_ends_with", @@ -28501,9 +34291,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -28511,9 +34303,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -28521,9 +34315,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -28537,11 +34333,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -28555,11 +34355,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -28567,9 +34371,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -28577,9 +34383,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -28587,9 +34395,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -28597,9 +34407,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters_every", @@ -28607,9 +34419,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters_some", @@ -28617,9 +34431,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "characters_none", @@ -28627,9 +34443,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets_every", @@ -28637,9 +34455,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets_some", @@ -28647,9 +34467,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "planets_none", @@ -28657,9 +34479,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_every", @@ -28667,9 +34491,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_some", @@ -28677,9 +34503,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_none", @@ -28687,9 +34515,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_every", @@ -28697,9 +34527,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_some", @@ -28707,9 +34539,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_none", @@ -28717,9 +34551,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_every", @@ -28727,9 +34563,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_some", @@ -28737,9 +34575,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_none", @@ -28747,13 +34587,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -28766,112 +34609,131 @@ "name": "createdAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "director_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "director_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "episodeId_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "episodeId_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "openingCrawl_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "openingCrawl_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "releaseDate_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "releaseDate_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "title_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "title_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INTERFACE", @@ -28888,11 +34750,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, @@ -28901,39 +34766,47 @@ { "kind": "OBJECT", "name": "Asset", - "ofType": null + "ofType": null, + "__typename": "" }, { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, { "kind": "OBJECT", "name": "Species", - "ofType": null + "ofType": null, + "__typename": "" }, { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "" }, { "kind": "OBJECT", "name": "Vehicle", - "ofType": null + "ofType": null, + "__typename": "" } - ] + ], + "__typename": "" }, { "kind": "ENUM", @@ -28946,88 +34819,103 @@ "name": "UNKNOWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BLUE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "YELLOW", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "RED", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BROWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BLUEGREY", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BLACK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "ORANGE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "HAZEL", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "PINK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GOLD", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GREEN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "WHITE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "DARK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -29040,28 +34928,33 @@ "name": "UNKNOWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "MALE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "FEMALE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "HERMAPHRODITE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -29074,46 +34967,54 @@ "name": "AUBURN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BLACK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BLONDE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BROWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GREY", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "UNKNOWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "WHITE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -29126,124 +35027,145 @@ "name": "UNKNOWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "FAIR", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GOLD", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "WHITE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "LIGHT", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GREEN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GREENTAN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "PALE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "METAL", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "DARK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BROWNMOTTLE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BROWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GREY", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "MOTTLEDGREEN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "ORANGE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BLUE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "RED", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "YELLOW", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "TAN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "SILVER", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -29257,10 +35179,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt", @@ -29272,11 +35196,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "eyeColor", @@ -29291,12 +35218,16 @@ "ofType": { "kind": "ENUM", "name": "PERSON_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "films", @@ -29308,9 +35239,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -29318,9 +35251,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -29328,9 +35263,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -29338,9 +35275,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -29348,9 +35287,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -29358,9 +35299,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -29368,9 +35311,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -29382,12 +35327,16 @@ "ofType": { "kind": "OBJECT", "name": "Film", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "gender", @@ -29396,10 +35345,12 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "hairColor", @@ -29414,12 +35365,16 @@ "ofType": { "kind": "ENUM", "name": "PERSON_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "height", @@ -29428,10 +35383,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "homeworld", @@ -29443,18 +35400,22 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -29466,11 +35427,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -29482,11 +35446,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mass", @@ -29495,10 +35462,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name", @@ -29510,11 +35479,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "skinColor", @@ -29529,12 +35501,16 @@ "ofType": { "kind": "ENUM", "name": "PERSON_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "species", @@ -29546,9 +35522,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -29556,9 +35534,11 @@ "type": { "kind": "ENUM", "name": "SpeciesOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -29566,9 +35546,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -29576,9 +35558,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -29586,9 +35570,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -29596,9 +35582,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -29606,9 +35594,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -29620,12 +35610,16 @@ "ofType": { "kind": "OBJECT", "name": "Species", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "starships", @@ -29637,9 +35631,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -29647,9 +35643,11 @@ "type": { "kind": "ENUM", "name": "StarshipOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -29657,9 +35655,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -29667,9 +35667,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -29677,9 +35679,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -29687,9 +35691,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -29697,9 +35703,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -29711,12 +35719,16 @@ "ofType": { "kind": "OBJECT", "name": "Starship", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -29728,11 +35740,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "vehicles", @@ -29744,9 +35759,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -29754,9 +35771,11 @@ "type": { "kind": "ENUM", "name": "VehicleOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -29764,9 +35783,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -29774,9 +35795,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -29784,9 +35807,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -29794,9 +35819,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -29804,9 +35831,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -29818,12 +35847,16 @@ "ofType": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_filmsMeta", @@ -29835,9 +35868,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -29845,9 +35880,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -29855,9 +35892,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -29865,9 +35904,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -29875,9 +35916,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -29885,9 +35928,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -29895,9 +35940,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -29906,11 +35953,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_speciesMeta", @@ -29922,9 +35972,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -29932,9 +35984,11 @@ "type": { "kind": "ENUM", "name": "SpeciesOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -29942,9 +35996,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -29952,9 +36008,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -29962,9 +36020,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -29972,9 +36032,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -29982,9 +36044,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -29993,11 +36057,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_starshipsMeta", @@ -30009,9 +36076,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -30019,9 +36088,11 @@ "type": { "kind": "ENUM", "name": "StarshipOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -30029,9 +36100,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -30039,9 +36112,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -30049,9 +36124,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -30059,9 +36136,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -30069,9 +36148,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -30080,11 +36161,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_vehiclesMeta", @@ -30096,9 +36180,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -30106,9 +36192,11 @@ "type": { "kind": "ENUM", "name": "VehicleOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -30116,9 +36204,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -30126,9 +36216,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -30136,9 +36228,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -30146,9 +36240,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -30156,9 +36252,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -30167,11 +36265,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, @@ -30179,10 +36280,12 @@ { "kind": "INTERFACE", "name": "Node", - "ofType": null + "ofType": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -30201,11 +36304,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -30219,11 +36326,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear", @@ -30231,9 +36342,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_not", @@ -30241,9 +36354,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_in", @@ -30257,11 +36372,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_not_in", @@ -30275,11 +36394,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_lt", @@ -30287,9 +36410,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_lte", @@ -30297,9 +36422,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_gt", @@ -30307,9 +36434,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_gte", @@ -30317,9 +36446,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_contains", @@ -30327,9 +36458,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_not_contains", @@ -30337,9 +36470,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_starts_with", @@ -30347,9 +36482,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_not_starts_with", @@ -30357,9 +36494,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_ends_with", @@ -30367,9 +36506,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "birthYear_not_ends_with", @@ -30377,9 +36518,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt", @@ -30387,9 +36530,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -30397,9 +36542,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -30413,11 +36560,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -30431,11 +36582,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -30443,9 +36598,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -30453,9 +36610,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -30463,9 +36622,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -30473,9 +36634,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender", @@ -30483,9 +36646,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender_not", @@ -30493,9 +36658,11 @@ "type": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender_in", @@ -30509,11 +36676,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gender_not_in", @@ -30527,11 +36698,15 @@ "ofType": { "kind": "ENUM", "name": "PERSON_GENDER", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height", @@ -30539,9 +36714,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_not", @@ -30549,9 +36726,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_in", @@ -30565,11 +36744,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_not_in", @@ -30583,11 +36766,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_lt", @@ -30595,9 +36782,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_lte", @@ -30605,9 +36794,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_gt", @@ -30615,9 +36806,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "height_gte", @@ -30625,9 +36818,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -30635,9 +36830,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -30645,9 +36842,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -30661,11 +36860,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -30679,11 +36882,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -30691,9 +36898,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -30701,9 +36910,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -30711,9 +36922,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -30721,9 +36934,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -30731,9 +36946,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -30741,9 +36958,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -30751,9 +36970,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -30761,9 +36982,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -30771,9 +36994,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -30781,9 +37006,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -30791,9 +37018,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -30801,9 +37030,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass", @@ -30811,9 +37042,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_not", @@ -30821,9 +37054,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_in", @@ -30837,11 +37072,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_not_in", @@ -30855,11 +37094,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_lt", @@ -30867,9 +37110,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_lte", @@ -30877,9 +37122,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_gt", @@ -30887,9 +37134,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mass_gte", @@ -30897,9 +37146,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -30907,9 +37158,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not", @@ -30917,9 +37170,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_in", @@ -30933,11 +37188,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_in", @@ -30951,11 +37210,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lt", @@ -30963,9 +37226,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lte", @@ -30973,9 +37238,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gt", @@ -30983,9 +37250,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gte", @@ -30993,9 +37262,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_contains", @@ -31003,9 +37274,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_contains", @@ -31013,9 +37286,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_starts_with", @@ -31023,9 +37298,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_starts_with", @@ -31033,9 +37310,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_ends_with", @@ -31043,9 +37322,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_ends_with", @@ -31053,9 +37334,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -31063,9 +37346,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -31073,9 +37358,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -31089,11 +37376,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -31107,11 +37398,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -31119,9 +37414,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -31129,9 +37426,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -31139,9 +37438,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -31149,9 +37450,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_every", @@ -31159,9 +37462,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_some", @@ -31169,9 +37474,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_none", @@ -31179,9 +37486,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "homeworld", @@ -31189,9 +37498,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_every", @@ -31199,9 +37510,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_some", @@ -31209,9 +37522,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "species_none", @@ -31219,9 +37534,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_every", @@ -31229,9 +37546,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_some", @@ -31239,9 +37558,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "starships_none", @@ -31249,9 +37570,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_every", @@ -31259,9 +37582,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_some", @@ -31269,9 +37594,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "vehicles_none", @@ -31279,13 +37606,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -31298,112 +37628,131 @@ "name": "birthYear_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "birthYear_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "gender_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "gender_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "height_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "height_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mass_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mass_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -31423,12 +37772,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt", @@ -31440,11 +37793,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "diameter", @@ -31453,10 +37809,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "films", @@ -31468,9 +37826,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -31478,9 +37838,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -31488,9 +37850,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -31498,9 +37862,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -31508,9 +37874,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -31518,9 +37886,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -31528,9 +37898,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -31542,12 +37914,16 @@ "ofType": { "kind": "OBJECT", "name": "Film", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "gravity", @@ -31556,10 +37932,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -31571,11 +37949,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -31587,11 +37968,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name", @@ -31603,11 +37987,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "orbitalPeriod", @@ -31616,10 +38003,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "population", @@ -31628,10 +38017,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "residents", @@ -31643,9 +38034,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -31653,9 +38046,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -31663,9 +38058,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -31673,9 +38070,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -31683,9 +38082,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -31693,9 +38094,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -31703,9 +38106,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -31717,12 +38122,16 @@ "ofType": { "kind": "OBJECT", "name": "Person", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "rotationPeriod", @@ -31731,10 +38140,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "surfaceWater", @@ -31743,10 +38154,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "terrain", @@ -31761,12 +38174,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -31778,11 +38195,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_filmsMeta", @@ -31794,9 +38214,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -31804,9 +38226,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -31814,9 +38238,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -31824,9 +38250,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -31834,9 +38262,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -31844,9 +38274,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -31854,9 +38286,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -31865,11 +38299,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_residentsMeta", @@ -31881,9 +38318,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -31891,9 +38330,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -31901,9 +38342,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -31911,9 +38354,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -31921,9 +38366,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -31931,9 +38378,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -31941,9 +38390,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -31952,11 +38403,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, @@ -31964,10 +38418,12 @@ { "kind": "INTERFACE", "name": "Node", - "ofType": null + "ofType": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -31986,11 +38442,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -32004,11 +38464,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt", @@ -32016,9 +38480,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -32026,9 +38492,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -32042,11 +38510,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -32060,11 +38532,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -32072,9 +38548,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -32082,9 +38560,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -32092,9 +38572,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -32102,9 +38584,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter", @@ -32112,9 +38596,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_not", @@ -32122,9 +38608,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_in", @@ -32138,11 +38626,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_not_in", @@ -32156,11 +38648,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_lt", @@ -32168,9 +38664,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_lte", @@ -32178,9 +38676,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_gt", @@ -32188,9 +38688,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "diameter_gte", @@ -32198,9 +38700,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity", @@ -32208,9 +38712,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_not", @@ -32218,9 +38724,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_in", @@ -32234,11 +38742,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_not_in", @@ -32252,11 +38764,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_lt", @@ -32264,9 +38780,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_lte", @@ -32274,9 +38792,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_gt", @@ -32284,9 +38804,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_gte", @@ -32294,9 +38816,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_contains", @@ -32304,9 +38828,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_not_contains", @@ -32314,9 +38840,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_starts_with", @@ -32324,9 +38852,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_not_starts_with", @@ -32334,9 +38864,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_ends_with", @@ -32344,9 +38876,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "gravity_not_ends_with", @@ -32354,9 +38888,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -32364,9 +38900,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -32374,9 +38912,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -32390,11 +38930,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -32408,11 +38952,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -32420,9 +38968,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -32430,9 +38980,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -32440,9 +38992,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -32450,9 +39004,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -32460,9 +39016,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -32470,9 +39028,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -32480,9 +39040,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -32490,9 +39052,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -32500,9 +39064,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -32510,9 +39076,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -32520,9 +39088,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -32530,9 +39100,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -32540,9 +39112,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not", @@ -32550,9 +39124,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_in", @@ -32566,11 +39142,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_in", @@ -32584,11 +39164,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lt", @@ -32596,9 +39180,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lte", @@ -32606,9 +39192,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gt", @@ -32616,9 +39204,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gte", @@ -32626,9 +39216,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_contains", @@ -32636,9 +39228,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_contains", @@ -32646,9 +39240,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_starts_with", @@ -32656,9 +39252,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_starts_with", @@ -32666,9 +39264,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_ends_with", @@ -32676,9 +39276,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_ends_with", @@ -32686,9 +39288,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod", @@ -32696,9 +39300,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_not", @@ -32706,9 +39312,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_in", @@ -32722,11 +39330,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_not_in", @@ -32740,11 +39352,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_lt", @@ -32752,9 +39368,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_lte", @@ -32762,9 +39380,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_gt", @@ -32772,9 +39392,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orbitalPeriod_gte", @@ -32782,9 +39404,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population", @@ -32792,9 +39416,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_not", @@ -32802,9 +39428,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_in", @@ -32818,11 +39446,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_not_in", @@ -32836,11 +39468,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_lt", @@ -32848,9 +39484,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_lte", @@ -32858,9 +39496,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_gt", @@ -32868,9 +39508,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "population_gte", @@ -32878,9 +39520,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod", @@ -32888,9 +39532,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_not", @@ -32898,9 +39544,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_in", @@ -32914,11 +39562,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_not_in", @@ -32932,11 +39584,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_lt", @@ -32944,9 +39600,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_lte", @@ -32954,9 +39612,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_gt", @@ -32964,9 +39624,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "rotationPeriod_gte", @@ -32974,9 +39636,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater", @@ -32984,9 +39648,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_not", @@ -32994,9 +39660,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_in", @@ -33010,11 +39678,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_not_in", @@ -33028,11 +39700,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_lt", @@ -33040,9 +39716,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_lte", @@ -33050,9 +39728,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_gt", @@ -33060,9 +39740,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "surfaceWater_gte", @@ -33070,9 +39752,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -33080,9 +39764,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -33090,9 +39776,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -33106,11 +39794,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -33124,11 +39816,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -33136,9 +39832,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -33146,9 +39844,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -33156,9 +39856,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -33166,9 +39868,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_every", @@ -33176,9 +39880,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_some", @@ -33186,9 +39892,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_none", @@ -33196,9 +39904,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents_every", @@ -33206,9 +39916,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents_some", @@ -33216,9 +39928,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "residents_none", @@ -33226,13 +39940,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -33245,136 +39962,159 @@ "name": "createdAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "diameter_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "diameter_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "gravity_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "gravity_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "orbitalPeriod_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "orbitalPeriod_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "population_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "population_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "rotationPeriod_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "rotationPeriod_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "surfaceWater_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "surfaceWater_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -33391,9 +40131,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "AssetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -33401,9 +40143,11 @@ "type": { "kind": "ENUM", "name": "AssetOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -33411,9 +40155,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -33421,9 +40167,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -33431,9 +40179,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -33441,9 +40191,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -33451,9 +40203,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -33468,13 +40222,18 @@ "ofType": { "kind": "OBJECT", "name": "Asset", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "allFilms", @@ -33486,9 +40245,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -33496,9 +40257,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -33506,9 +40269,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -33516,9 +40281,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -33526,9 +40293,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -33536,9 +40305,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -33546,9 +40317,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -33563,13 +40336,18 @@ "ofType": { "kind": "OBJECT", "name": "Film", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "allPersons", @@ -33581,9 +40359,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -33591,9 +40371,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -33601,9 +40383,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -33611,9 +40395,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -33621,9 +40407,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -33631,9 +40419,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -33641,9 +40431,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -33658,13 +40450,18 @@ "ofType": { "kind": "OBJECT", "name": "Person", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "allPlanets", @@ -33676,9 +40473,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -33686,9 +40485,11 @@ "type": { "kind": "ENUM", "name": "PlanetOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -33696,9 +40497,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -33706,9 +40509,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -33716,9 +40521,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -33726,9 +40533,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -33736,9 +40545,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -33753,13 +40564,18 @@ "ofType": { "kind": "OBJECT", "name": "Planet", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "allSpecies", @@ -33771,9 +40587,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -33781,9 +40599,11 @@ "type": { "kind": "ENUM", "name": "SpeciesOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -33791,9 +40611,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -33801,9 +40623,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -33811,9 +40635,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -33821,9 +40647,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -33831,9 +40659,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -33848,13 +40678,18 @@ "ofType": { "kind": "OBJECT", "name": "Species", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "allStarships", @@ -33866,9 +40701,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -33876,9 +40713,11 @@ "type": { "kind": "ENUM", "name": "StarshipOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -33886,9 +40725,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -33896,9 +40737,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -33906,9 +40749,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -33916,9 +40761,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -33926,9 +40773,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -33943,13 +40792,18 @@ "ofType": { "kind": "OBJECT", "name": "Starship", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "allVehicles", @@ -33961,9 +40815,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -33971,9 +40827,11 @@ "type": { "kind": "ENUM", "name": "VehicleOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -33981,9 +40839,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -33991,9 +40851,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -34001,9 +40863,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -34011,9 +40875,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -34021,9 +40887,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -34038,13 +40906,18 @@ "ofType": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_allAssetsMeta", @@ -34056,9 +40929,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "AssetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -34066,9 +40941,11 @@ "type": { "kind": "ENUM", "name": "AssetOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -34076,9 +40953,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -34086,9 +40965,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -34096,9 +40977,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -34106,9 +40989,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -34116,9 +41001,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -34127,11 +41014,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_allFilmsMeta", @@ -34143,9 +41033,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -34153,9 +41045,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -34163,9 +41057,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -34173,9 +41069,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -34183,9 +41081,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -34193,9 +41093,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -34203,9 +41105,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -34214,11 +41118,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_allPersonsMeta", @@ -34230,9 +41137,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -34240,9 +41149,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -34250,9 +41161,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -34260,9 +41173,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -34270,9 +41185,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -34280,9 +41197,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -34290,9 +41209,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -34301,11 +41222,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_allPlanetsMeta", @@ -34317,9 +41241,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PlanetFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -34327,9 +41253,11 @@ "type": { "kind": "ENUM", "name": "PlanetOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -34337,9 +41265,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -34347,9 +41277,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -34357,9 +41289,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -34367,9 +41301,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -34377,9 +41313,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -34388,11 +41326,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_allSpeciesMeta", @@ -34404,9 +41345,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -34414,9 +41357,11 @@ "type": { "kind": "ENUM", "name": "SpeciesOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -34424,9 +41369,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -34434,9 +41381,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -34444,9 +41393,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -34454,9 +41405,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -34464,9 +41417,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -34475,11 +41430,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_allStarshipsMeta", @@ -34491,9 +41449,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -34501,9 +41461,11 @@ "type": { "kind": "ENUM", "name": "StarshipOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -34511,9 +41473,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -34521,9 +41485,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -34531,9 +41497,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -34541,9 +41509,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -34551,9 +41521,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -34562,11 +41534,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_allVehiclesMeta", @@ -34578,9 +41553,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -34588,9 +41565,11 @@ "type": { "kind": "ENUM", "name": "VehicleOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -34598,9 +41577,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -34608,9 +41589,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -34618,9 +41601,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -34628,9 +41613,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -34638,9 +41625,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -34649,11 +41638,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Asset", @@ -34665,18 +41657,22 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Asset", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Film", @@ -34688,9 +41684,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "title", @@ -34698,18 +41696,22 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Film", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Person", @@ -34721,9 +41723,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -34731,18 +41735,22 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Person", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Planet", @@ -34754,9 +41762,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -34764,18 +41774,22 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Planet", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Species", @@ -34787,9 +41801,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -34797,18 +41813,22 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Species", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Starship", @@ -34820,9 +41840,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -34830,18 +41852,22 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Starship", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "Vehicle", @@ -34853,9 +41879,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -34863,18 +41891,22 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "OBJECT", "name": "Vehicle", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "node", @@ -34889,24 +41921,30 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { "kind": "INTERFACE", "name": "Node", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -34919,100 +41957,117 @@ "name": "AMBER", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BLACK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BLUE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BROWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GOLD", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GREEN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GREY", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "HAZEL", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "INDIGO", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "ORANGE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "PINK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "RED", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "SILVER", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "UNKNOWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "YELLOW", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GOLDEN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -35025,40 +42080,47 @@ "name": "UNKNOWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BROWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "WHITE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "RED", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BLACK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BLONDE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -35071,130 +42133,152 @@ "name": "BLUE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BROWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "CAUCASIAN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "DARK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GREEN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "GREY", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "MAGENTA", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "ORANGE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "PALE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "PALEPINK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "PEACH", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "PINK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "PURPLE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "RED", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "TAN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "UNKNOWN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "WHITE", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "YELLOW", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "BLACK", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "ASIAN", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "HISPANIC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -35208,10 +42292,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "averageLifespan", @@ -35220,10 +42306,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "classification", @@ -35232,10 +42320,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt", @@ -35247,11 +42337,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "designation", @@ -35260,10 +42353,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "eyeColor", @@ -35278,12 +42373,16 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_EYE_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "films", @@ -35295,9 +42394,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -35305,9 +42406,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -35315,9 +42418,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -35325,9 +42430,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -35335,9 +42442,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -35345,9 +42454,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -35355,9 +42466,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -35369,12 +42482,16 @@ "ofType": { "kind": "OBJECT", "name": "Film", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "hairColor", @@ -35389,12 +42506,16 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_HAIR_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -35406,11 +42527,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -35422,11 +42546,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "language", @@ -35435,10 +42562,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name", @@ -35450,11 +42579,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "people", @@ -35466,9 +42598,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -35476,9 +42610,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -35486,9 +42622,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -35496,9 +42634,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -35506,9 +42646,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -35516,9 +42658,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -35526,9 +42670,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -35540,12 +42686,16 @@ "ofType": { "kind": "OBJECT", "name": "Person", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "skinColor", @@ -35560,12 +42710,16 @@ "ofType": { "kind": "ENUM", "name": "SPECIES_SKIN_COLOR", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -35577,11 +42731,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_filmsMeta", @@ -35593,9 +42750,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -35603,9 +42762,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -35613,9 +42774,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -35623,9 +42786,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -35633,9 +42798,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -35643,9 +42810,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -35653,9 +42822,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -35664,11 +42835,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_peopleMeta", @@ -35680,9 +42854,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -35690,9 +42866,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -35700,9 +42878,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -35710,9 +42890,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -35720,9 +42902,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -35730,9 +42914,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -35740,9 +42926,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -35751,11 +42939,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, @@ -35763,10 +42954,12 @@ { "kind": "INTERFACE", "name": "Node", - "ofType": null + "ofType": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -35785,11 +42978,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -35803,11 +43000,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "SpeciesFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight", @@ -35815,9 +43016,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_not", @@ -35825,9 +43028,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_in", @@ -35841,11 +43046,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_not_in", @@ -35859,11 +43068,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_lt", @@ -35871,9 +43084,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_lte", @@ -35881,9 +43096,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_gt", @@ -35891,9 +43108,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageHeight_gte", @@ -35901,9 +43120,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan", @@ -35911,9 +43132,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_not", @@ -35921,9 +43144,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_in", @@ -35937,11 +43162,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_not_in", @@ -35955,11 +43184,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_lt", @@ -35967,9 +43200,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_lte", @@ -35977,9 +43212,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_gt", @@ -35987,9 +43224,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "averageLifespan_gte", @@ -35997,9 +43236,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification", @@ -36007,9 +43248,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_not", @@ -36017,9 +43260,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_in", @@ -36033,11 +43278,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_not_in", @@ -36051,11 +43300,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_lt", @@ -36063,9 +43316,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_lte", @@ -36073,9 +43328,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_gt", @@ -36083,9 +43340,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_gte", @@ -36093,9 +43352,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_contains", @@ -36103,9 +43364,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_not_contains", @@ -36113,9 +43376,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_starts_with", @@ -36123,9 +43388,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_not_starts_with", @@ -36133,9 +43400,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_ends_with", @@ -36143,9 +43412,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "classification_not_ends_with", @@ -36153,9 +43424,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt", @@ -36163,9 +43436,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -36173,9 +43448,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -36189,11 +43466,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -36207,11 +43488,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -36219,9 +43504,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -36229,9 +43516,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -36239,9 +43528,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -36249,9 +43540,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation", @@ -36259,9 +43552,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_not", @@ -36269,9 +43564,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_in", @@ -36285,11 +43582,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_not_in", @@ -36303,11 +43604,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_lt", @@ -36315,9 +43620,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_lte", @@ -36325,9 +43632,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_gt", @@ -36335,9 +43644,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_gte", @@ -36345,9 +43656,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_contains", @@ -36355,9 +43668,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_not_contains", @@ -36365,9 +43680,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_starts_with", @@ -36375,9 +43692,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_not_starts_with", @@ -36385,9 +43704,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_ends_with", @@ -36395,9 +43716,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "designation_not_ends_with", @@ -36405,9 +43728,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -36415,9 +43740,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -36425,9 +43752,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -36441,11 +43770,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -36459,11 +43792,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -36471,9 +43808,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -36481,9 +43820,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -36491,9 +43832,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -36501,9 +43844,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -36511,9 +43856,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -36521,9 +43868,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -36531,9 +43880,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -36541,9 +43892,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -36551,9 +43904,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -36561,9 +43916,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -36571,9 +43928,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -36581,9 +43940,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language", @@ -36591,9 +43952,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_not", @@ -36601,9 +43964,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_in", @@ -36617,11 +43982,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_not_in", @@ -36635,11 +44004,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_lt", @@ -36647,9 +44020,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_lte", @@ -36657,9 +44032,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_gt", @@ -36667,9 +44044,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_gte", @@ -36677,9 +44056,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_contains", @@ -36687,9 +44068,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_not_contains", @@ -36697,9 +44080,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_starts_with", @@ -36707,9 +44092,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_not_starts_with", @@ -36717,9 +44104,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_ends_with", @@ -36727,9 +44116,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "language_not_ends_with", @@ -36737,9 +44128,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -36747,9 +44140,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not", @@ -36757,9 +44152,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_in", @@ -36773,11 +44170,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_in", @@ -36791,11 +44192,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lt", @@ -36803,9 +44208,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lte", @@ -36813,9 +44220,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gt", @@ -36823,9 +44232,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gte", @@ -36833,9 +44244,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_contains", @@ -36843,9 +44256,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_contains", @@ -36853,9 +44268,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_starts_with", @@ -36863,9 +44280,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_starts_with", @@ -36873,9 +44292,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_ends_with", @@ -36883,9 +44304,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_ends_with", @@ -36893,9 +44316,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -36903,9 +44328,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -36913,9 +44340,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -36929,11 +44358,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -36947,11 +44380,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -36959,9 +44396,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -36969,9 +44408,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -36979,9 +44420,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -36989,9 +44432,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_every", @@ -36999,9 +44444,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_some", @@ -37009,9 +44456,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_none", @@ -37019,9 +44468,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people_every", @@ -37029,9 +44480,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people_some", @@ -37039,9 +44492,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "people_none", @@ -37049,13 +44504,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -37068,124 +44526,145 @@ "name": "averageHeight_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "averageHeight_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "averageLifespan_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "averageLifespan_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "classification_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "classification_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "designation_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "designation_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "language_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "language_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -37199,10 +44678,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "class", @@ -37211,10 +44692,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "consumables", @@ -37223,10 +44706,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "costInCredits", @@ -37235,10 +44720,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt", @@ -37250,11 +44737,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "crew", @@ -37263,10 +44753,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "films", @@ -37278,9 +44770,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -37288,9 +44782,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -37298,9 +44794,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -37308,9 +44806,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -37318,9 +44818,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -37328,9 +44830,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -37338,9 +44842,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -37352,12 +44858,16 @@ "ofType": { "kind": "OBJECT", "name": "Film", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "hyperdriveRating", @@ -37366,10 +44876,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -37381,11 +44893,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -37397,11 +44912,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "length", @@ -37410,10 +44928,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "manufacturer", @@ -37428,12 +44948,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -37442,10 +44966,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mglt", @@ -37454,10 +44980,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name", @@ -37469,11 +44997,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "passengers", @@ -37482,10 +45013,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "pilots", @@ -37497,9 +45030,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -37507,9 +45042,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -37517,9 +45054,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -37527,9 +45066,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -37537,9 +45078,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -37547,9 +45090,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -37557,9 +45102,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -37571,12 +45118,16 @@ "ofType": { "kind": "OBJECT", "name": "Person", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -37588,11 +45139,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_filmsMeta", @@ -37604,9 +45158,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -37614,9 +45170,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -37624,9 +45182,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -37634,9 +45194,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -37644,9 +45206,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -37654,9 +45218,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -37664,9 +45230,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -37675,11 +45243,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_pilotsMeta", @@ -37691,9 +45262,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -37701,9 +45274,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -37711,9 +45286,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -37721,9 +45298,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -37731,9 +45310,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -37741,9 +45322,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -37751,9 +45334,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -37762,11 +45347,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, @@ -37774,10 +45362,12 @@ { "kind": "INTERFACE", "name": "Node", - "ofType": null + "ofType": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -37796,11 +45386,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -37814,11 +45408,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "StarshipFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity", @@ -37826,9 +45424,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_not", @@ -37836,9 +45436,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_in", @@ -37852,11 +45454,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_not_in", @@ -37870,11 +45476,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_lt", @@ -37882,9 +45492,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_lte", @@ -37892,9 +45504,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_gt", @@ -37902,9 +45516,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_gte", @@ -37912,9 +45528,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -37922,9 +45540,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not", @@ -37932,9 +45552,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_in", @@ -37948,11 +45570,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_in", @@ -37966,11 +45592,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_lt", @@ -37978,9 +45608,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_lte", @@ -37988,9 +45620,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_gt", @@ -37998,9 +45632,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_gte", @@ -38008,9 +45644,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_contains", @@ -38018,9 +45656,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_contains", @@ -38028,9 +45668,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_starts_with", @@ -38038,9 +45680,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_starts_with", @@ -38048,9 +45692,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_ends_with", @@ -38058,9 +45704,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_ends_with", @@ -38068,9 +45716,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -38078,9 +45728,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not", @@ -38088,9 +45740,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_in", @@ -38104,11 +45758,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_in", @@ -38122,11 +45780,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_lt", @@ -38134,9 +45796,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_lte", @@ -38144,9 +45808,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_gt", @@ -38154,9 +45820,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_gte", @@ -38164,9 +45832,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_contains", @@ -38174,9 +45844,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_contains", @@ -38184,9 +45856,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_starts_with", @@ -38194,9 +45868,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_starts_with", @@ -38204,9 +45880,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_ends_with", @@ -38214,9 +45892,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_ends_with", @@ -38224,9 +45904,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -38234,9 +45916,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_not", @@ -38244,9 +45928,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_in", @@ -38260,11 +45946,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_not_in", @@ -38278,11 +45968,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_lt", @@ -38290,9 +45984,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_lte", @@ -38300,9 +45996,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_gt", @@ -38310,9 +46008,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_gte", @@ -38320,9 +46020,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt", @@ -38330,9 +46032,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -38340,9 +46044,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -38356,11 +46062,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -38374,11 +46084,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -38386,9 +46100,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -38396,9 +46112,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -38406,9 +46124,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -38416,9 +46136,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -38426,9 +46148,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_not", @@ -38436,9 +46160,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_in", @@ -38452,11 +46178,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_not_in", @@ -38470,11 +46200,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_lt", @@ -38482,9 +46216,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_lte", @@ -38492,9 +46228,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_gt", @@ -38502,9 +46240,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_gte", @@ -38512,9 +46252,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating", @@ -38522,9 +46264,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_not", @@ -38532,9 +46276,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_in", @@ -38548,11 +46294,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_not_in", @@ -38566,11 +46316,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_lt", @@ -38578,9 +46332,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_lte", @@ -38588,9 +46344,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_gt", @@ -38598,9 +46356,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "hyperdriveRating_gte", @@ -38608,9 +46368,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -38618,9 +46380,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -38628,9 +46392,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -38644,11 +46410,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -38662,11 +46432,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -38674,9 +46448,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -38684,9 +46460,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -38694,9 +46472,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -38704,9 +46484,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -38714,9 +46496,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -38724,9 +46508,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -38734,9 +46520,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -38744,9 +46532,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -38754,9 +46544,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -38764,9 +46556,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -38774,9 +46568,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -38784,9 +46580,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -38794,9 +46592,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_not", @@ -38804,9 +46604,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_in", @@ -38820,11 +46622,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_not_in", @@ -38838,11 +46644,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_lt", @@ -38850,9 +46660,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_lte", @@ -38860,9 +46672,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_gt", @@ -38870,9 +46684,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_gte", @@ -38880,9 +46696,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -38890,9 +46708,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_not", @@ -38900,9 +46720,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_in", @@ -38916,11 +46738,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_not_in", @@ -38934,11 +46760,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_lt", @@ -38946,9 +46776,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_lte", @@ -38956,9 +46788,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_gt", @@ -38966,9 +46800,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_gte", @@ -38976,9 +46812,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt", @@ -38986,9 +46824,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_not", @@ -38996,9 +46836,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_in", @@ -39012,11 +46854,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_not_in", @@ -39030,11 +46876,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_lt", @@ -39042,9 +46892,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_lte", @@ -39052,9 +46904,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_gt", @@ -39062,9 +46916,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "mglt_gte", @@ -39072,9 +46928,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -39082,9 +46940,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not", @@ -39092,9 +46952,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_in", @@ -39108,11 +46970,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_in", @@ -39126,11 +46992,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lt", @@ -39138,9 +47008,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lte", @@ -39148,9 +47020,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gt", @@ -39158,9 +47032,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gte", @@ -39168,9 +47044,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_contains", @@ -39178,9 +47056,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_contains", @@ -39188,9 +47068,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_starts_with", @@ -39198,9 +47080,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_starts_with", @@ -39208,9 +47092,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_ends_with", @@ -39218,9 +47104,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_ends_with", @@ -39228,9 +47116,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -39238,9 +47128,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_not", @@ -39248,9 +47140,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_in", @@ -39264,11 +47158,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_not_in", @@ -39282,11 +47180,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_lt", @@ -39294,9 +47196,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_lte", @@ -39304,9 +47208,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_gt", @@ -39314,9 +47220,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_gte", @@ -39324,9 +47232,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -39334,9 +47244,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -39344,9 +47256,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -39360,11 +47274,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -39378,11 +47296,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -39390,9 +47312,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -39400,9 +47324,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -39410,9 +47336,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -39420,9 +47348,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_every", @@ -39430,9 +47360,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_some", @@ -39440,9 +47372,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_none", @@ -39450,9 +47384,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_every", @@ -39460,9 +47396,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_some", @@ -39470,9 +47408,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_none", @@ -39480,13 +47420,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -39499,184 +47442,215 @@ "name": "cargoCapacity_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "cargoCapacity_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "class_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "class_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "consumables_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "consumables_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "costInCredits_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "costInCredits_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "crew_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "crew_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "hyperdriveRating_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "hyperdriveRating_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "length_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "length_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mglt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mglt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "passengers_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "passengers_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -39690,10 +47664,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "class", @@ -39702,10 +47678,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "consumables", @@ -39714,10 +47692,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "costInCredits", @@ -39726,10 +47706,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt", @@ -39741,11 +47723,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "crew", @@ -39754,10 +47739,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "films", @@ -39769,9 +47756,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -39779,9 +47768,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -39789,9 +47780,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -39799,9 +47792,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -39809,9 +47804,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -39819,9 +47816,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -39829,9 +47828,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -39843,12 +47844,16 @@ "ofType": { "kind": "OBJECT", "name": "Film", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id", @@ -39860,11 +47865,14 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished", @@ -39876,11 +47884,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "length", @@ -39889,10 +47900,12 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "manufacturer", @@ -39907,12 +47920,16 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -39921,10 +47938,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "model", @@ -39933,10 +47952,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name", @@ -39948,11 +47969,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "passengers", @@ -39961,10 +47985,12 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "pilots", @@ -39976,9 +48002,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -39986,9 +48014,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -39996,9 +48026,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -40006,9 +48038,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -40016,9 +48050,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -40026,9 +48062,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -40036,9 +48074,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -40050,12 +48090,16 @@ "ofType": { "kind": "OBJECT", "name": "Person", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt", @@ -40067,11 +48111,14 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_filmsMeta", @@ -40083,9 +48130,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -40093,9 +48142,11 @@ "type": { "kind": "ENUM", "name": "FilmOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -40103,9 +48154,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -40113,9 +48166,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -40123,9 +48178,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -40133,9 +48190,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -40143,9 +48202,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -40154,11 +48215,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "_pilotsMeta", @@ -40170,9 +48234,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "orderBy", @@ -40180,9 +48246,11 @@ "type": { "kind": "ENUM", "name": "PersonOrderBy", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "skip", @@ -40190,9 +48258,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "after", @@ -40200,9 +48270,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "before", @@ -40210,9 +48282,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "first", @@ -40220,9 +48294,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "last", @@ -40230,9 +48306,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "type": { @@ -40241,11 +48319,14 @@ "ofType": { "kind": "OBJECT", "name": "_QueryMeta", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, @@ -40253,10 +48334,12 @@ { "kind": "INTERFACE", "name": "Node", - "ofType": null + "ofType": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "INPUT_OBJECT", @@ -40275,11 +48358,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "OR", @@ -40293,11 +48380,15 @@ "ofType": { "kind": "INPUT_OBJECT", "name": "VehicleFilter", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity", @@ -40305,9 +48396,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_not", @@ -40315,9 +48408,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_in", @@ -40331,11 +48426,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_not_in", @@ -40349,11 +48448,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_lt", @@ -40361,9 +48464,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_lte", @@ -40371,9 +48476,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_gt", @@ -40381,9 +48488,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "cargoCapacity_gte", @@ -40391,9 +48500,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class", @@ -40401,9 +48512,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not", @@ -40411,9 +48524,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_in", @@ -40427,11 +48542,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_in", @@ -40445,11 +48564,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_lt", @@ -40457,9 +48580,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_lte", @@ -40467,9 +48592,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_gt", @@ -40477,9 +48604,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_gte", @@ -40487,9 +48616,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_contains", @@ -40497,9 +48628,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_contains", @@ -40507,9 +48640,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_starts_with", @@ -40517,9 +48652,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_starts_with", @@ -40527,9 +48664,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_ends_with", @@ -40537,9 +48676,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "class_not_ends_with", @@ -40547,9 +48688,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables", @@ -40557,9 +48700,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not", @@ -40567,9 +48712,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_in", @@ -40583,11 +48730,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_in", @@ -40601,11 +48752,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_lt", @@ -40613,9 +48768,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_lte", @@ -40623,9 +48780,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_gt", @@ -40633,9 +48792,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_gte", @@ -40643,9 +48804,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_contains", @@ -40653,9 +48816,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_contains", @@ -40663,9 +48828,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_starts_with", @@ -40673,9 +48840,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_starts_with", @@ -40683,9 +48852,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_ends_with", @@ -40693,9 +48864,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "consumables_not_ends_with", @@ -40703,9 +48876,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits", @@ -40713,9 +48888,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_not", @@ -40723,9 +48900,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_in", @@ -40739,11 +48918,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_not_in", @@ -40757,11 +48940,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_lt", @@ -40769,9 +48956,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_lte", @@ -40779,9 +48968,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_gt", @@ -40789,9 +48980,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "costInCredits_gte", @@ -40799,9 +48992,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt", @@ -40809,9 +49004,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not", @@ -40819,9 +49016,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_in", @@ -40835,11 +49034,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_not_in", @@ -40853,11 +49056,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lt", @@ -40865,9 +49072,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_lte", @@ -40875,9 +49084,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gt", @@ -40885,9 +49096,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "createdAt_gte", @@ -40895,9 +49108,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew", @@ -40905,9 +49120,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_not", @@ -40915,9 +49132,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_in", @@ -40931,11 +49150,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_not_in", @@ -40949,11 +49172,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_lt", @@ -40961,9 +49188,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_lte", @@ -40971,9 +49200,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_gt", @@ -40981,9 +49212,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "crew_gte", @@ -40991,9 +49224,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id", @@ -41001,9 +49236,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not", @@ -41011,9 +49248,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_in", @@ -41027,11 +49266,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_in", @@ -41045,11 +49288,15 @@ "ofType": { "kind": "SCALAR", "name": "ID", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lt", @@ -41057,9 +49304,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_lte", @@ -41067,9 +49316,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gt", @@ -41077,9 +49328,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_gte", @@ -41087,9 +49340,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_contains", @@ -41097,9 +49352,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_contains", @@ -41107,9 +49364,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_starts_with", @@ -41117,9 +49376,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_starts_with", @@ -41127,9 +49388,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_ends_with", @@ -41137,9 +49400,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "id_not_ends_with", @@ -41147,9 +49412,11 @@ "type": { "kind": "SCALAR", "name": "ID", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished", @@ -41157,9 +49424,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "isPublished_not", @@ -41167,9 +49436,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length", @@ -41177,9 +49448,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_not", @@ -41187,9 +49460,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_in", @@ -41203,11 +49478,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_not_in", @@ -41221,11 +49500,15 @@ "ofType": { "kind": "SCALAR", "name": "Float", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_lt", @@ -41233,9 +49516,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_lte", @@ -41243,9 +49528,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_gt", @@ -41253,9 +49540,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "length_gte", @@ -41263,9 +49552,11 @@ "type": { "kind": "SCALAR", "name": "Float", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed", @@ -41273,9 +49564,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_not", @@ -41283,9 +49576,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_in", @@ -41299,11 +49594,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_not_in", @@ -41317,11 +49616,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_lt", @@ -41329,9 +49632,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_lte", @@ -41339,9 +49644,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_gt", @@ -41349,9 +49656,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_gte", @@ -41359,9 +49668,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model", @@ -41369,9 +49680,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_not", @@ -41379,9 +49692,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_in", @@ -41395,11 +49710,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_not_in", @@ -41413,11 +49732,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_lt", @@ -41425,9 +49748,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_lte", @@ -41435,9 +49760,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_gt", @@ -41445,9 +49772,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_gte", @@ -41455,9 +49784,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_contains", @@ -41465,9 +49796,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_not_contains", @@ -41475,9 +49808,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_starts_with", @@ -41485,9 +49820,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_not_starts_with", @@ -41495,9 +49832,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_ends_with", @@ -41505,9 +49844,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "model_not_ends_with", @@ -41515,9 +49856,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name", @@ -41525,9 +49868,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not", @@ -41535,9 +49880,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_in", @@ -41551,11 +49898,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_in", @@ -41569,11 +49920,15 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lt", @@ -41581,9 +49936,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_lte", @@ -41591,9 +49948,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gt", @@ -41601,9 +49960,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_gte", @@ -41611,9 +49972,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_contains", @@ -41621,9 +49984,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_contains", @@ -41631,9 +49996,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_starts_with", @@ -41641,9 +50008,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_starts_with", @@ -41651,9 +50020,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_ends_with", @@ -41661,9 +50032,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "name_not_ends_with", @@ -41671,9 +50044,11 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers", @@ -41681,9 +50056,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_not", @@ -41691,9 +50068,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_in", @@ -41707,11 +50086,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_not_in", @@ -41725,11 +50108,15 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_lt", @@ -41737,9 +50124,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_lte", @@ -41747,9 +50136,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_gt", @@ -41757,9 +50148,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "passengers_gte", @@ -41767,9 +50160,11 @@ "type": { "kind": "SCALAR", "name": "Int", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt", @@ -41777,9 +50172,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not", @@ -41787,9 +50184,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_in", @@ -41803,11 +50202,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_not_in", @@ -41821,11 +50224,15 @@ "ofType": { "kind": "SCALAR", "name": "DateTime", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lt", @@ -41833,9 +50240,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_lte", @@ -41843,9 +50252,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gt", @@ -41853,9 +50264,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "updatedAt_gte", @@ -41863,9 +50276,11 @@ "type": { "kind": "SCALAR", "name": "DateTime", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_every", @@ -41873,9 +50288,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_some", @@ -41883,9 +50300,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "films_none", @@ -41893,9 +50312,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "FilmFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_every", @@ -41903,9 +50324,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_some", @@ -41913,9 +50336,11 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" }, { "name": "pilots_none", @@ -41923,13 +50348,16 @@ "type": { "kind": "INPUT_OBJECT", "name": "PersonFilter", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -41942,172 +50370,201 @@ "name": "cargoCapacity_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "cargoCapacity_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "class_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "class_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "consumables_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "consumables_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "costInCredits_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "costInCredits_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "createdAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "crew_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "crew_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "id_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isPublished_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "length_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "length_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "maxAtmospheringSpeed_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "model_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "model_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "passengers_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "passengers_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_ASC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "updatedAt_DESC", "description": "", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -42124,16 +50581,20 @@ "ofType": { "kind": "SCALAR", "name": "Int", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -42150,11 +50611,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "description", @@ -42163,10 +50627,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "locations", @@ -42184,13 +50650,18 @@ "ofType": { "kind": "ENUM", "name": "__DirectiveLocation", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "args", @@ -42208,13 +50679,18 @@ "ofType": { "kind": "OBJECT", "name": "__InputValue", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "onOperation", @@ -42226,11 +50702,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": true, - "deprecationReason": "Use `locations`." + "deprecationReason": "Use `locations`.", + "__typename": "" }, { "name": "onFragment", @@ -42242,11 +50721,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": true, - "deprecationReason": "Use `locations`." + "deprecationReason": "Use `locations`.", + "__typename": "" }, { "name": "onField", @@ -42258,16 +50740,20 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": true, - "deprecationReason": "Use `locations`." + "deprecationReason": "Use `locations`.", + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -42280,112 +50766,131 @@ "name": "QUERY", "description": "Location adjacent to a query operation.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "MUTATION", "description": "Location adjacent to a mutation operation.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "SUBSCRIPTION", "description": "Location adjacent to a subscription operation.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "FIELD", "description": "Location adjacent to a field.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "FRAGMENT_DEFINITION", "description": "Location adjacent to a fragment definition.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "FRAGMENT_SPREAD", "description": "Location adjacent to a fragment spread.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "INLINE_FRAGMENT", "description": "Location adjacent to an inline fragment.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "SCHEMA", "description": "Location adjacent to a schema definition.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "SCALAR", "description": "Location adjacent to a scalar definition.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "OBJECT", "description": "Location adjacent to an object type definition.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "FIELD_DEFINITION", "description": "Location adjacent to a field definition.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "ARGUMENT_DEFINITION", "description": "Location adjacent to an argument definition.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "INTERFACE", "description": "Location adjacent to an interface definition.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "UNION", "description": "Location adjacent to a union definition.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "ENUM", "description": "Location adjacent to an enum definition.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "ENUM_VALUE", "description": "Location adjacent to an enum value definition.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "INPUT_OBJECT", "description": "INPUT_OBJECT", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "INPUT_FIELD_DEFINITION", "description": "Location adjacent to an input object field definition.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -42402,11 +50907,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "description", @@ -42415,10 +50923,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isDeprecated", @@ -42430,11 +50940,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "deprecationReason", @@ -42443,15 +50956,18 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -42468,11 +50984,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "description", @@ -42481,10 +51000,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "args", @@ -42502,13 +51023,18 @@ "ofType": { "kind": "OBJECT", "name": "__InputValue", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "type", @@ -42520,11 +51046,14 @@ "ofType": { "kind": "OBJECT", "name": "__Type", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "isDeprecated", @@ -42536,11 +51065,14 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "deprecationReason", @@ -42549,15 +51081,18 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -42574,11 +51109,14 @@ "ofType": { "kind": "SCALAR", "name": "String", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "description", @@ -42587,10 +51125,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "type", @@ -42602,11 +51142,14 @@ "ofType": { "kind": "OBJECT", "name": "__Type", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "defaultValue", @@ -42615,15 +51158,18 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -42646,13 +51192,18 @@ "ofType": { "kind": "OBJECT", "name": "__Type", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "queryType", @@ -42664,11 +51215,14 @@ "ofType": { "kind": "OBJECT", "name": "__Type", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "mutationType", @@ -42677,10 +51231,12 @@ "type": { "kind": "OBJECT", "name": "__Type", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "subscriptionType", @@ -42689,10 +51245,12 @@ "type": { "kind": "OBJECT", "name": "__Type", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "directives", @@ -42710,18 +51268,24 @@ "ofType": { "kind": "OBJECT", "name": "__Directive", - "ofType": null - } - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "OBJECT", @@ -42738,11 +51302,14 @@ "ofType": { "kind": "ENUM", "name": "__TypeKind", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "name", @@ -42751,10 +51318,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "description", @@ -42763,10 +51332,12 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "fields", @@ -42778,9 +51349,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": "false" + "defaultValue": "false", + "__typename": "" } ], "type": { @@ -42792,12 +51365,16 @@ "ofType": { "kind": "OBJECT", "name": "__Field", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "interfaces", @@ -42812,12 +51389,16 @@ "ofType": { "kind": "OBJECT", "name": "__Type", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "possibleTypes", @@ -42832,12 +51413,16 @@ "ofType": { "kind": "OBJECT", "name": "__Type", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "enumValues", @@ -42849,9 +51434,11 @@ "type": { "kind": "SCALAR", "name": "Boolean", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": "false" + "defaultValue": "false", + "__typename": "" } ], "type": { @@ -42863,12 +51450,16 @@ "ofType": { "kind": "OBJECT", "name": "__EnumValue", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "inputFields", @@ -42883,12 +51474,16 @@ "ofType": { "kind": "OBJECT", "name": "__InputValue", - "ofType": null - } - } + "ofType": null, + "__typename": "" + }, + "__typename": "" + }, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "ofType", @@ -42897,15 +51492,18 @@ "type": { "kind": "OBJECT", "name": "__Type", - "ofType": null + "ofType": null, + "__typename": "" }, "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], "inputFields": null, "interfaces": [], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "ENUM", @@ -42918,52 +51516,61 @@ "name": "SCALAR", "description": "Indicates this type is a scalar.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "OBJECT", "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "INTERFACE", "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "UNION", "description": "Indicates this type is a union. `possibleTypes` is a valid field.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "ENUM", "description": "Indicates this type is an enum. `enumValues` is a valid field.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "INPUT_OBJECT", "description": "Indicates this type is an input object. `inputFields` is a valid field.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "LIST", "description": "Indicates this type is a list. `ofType` is a valid field.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" }, { "name": "NON_NULL", "description": "Indicates this type is a non-null. `ofType` is a valid field.", "isDeprecated": false, - "deprecationReason": null + "deprecationReason": null, + "__typename": "" } ], - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "SCALAR", @@ -42971,7 +51578,8 @@ "description": "The `Boolean` scalar type represents `true` or `false`.", "inputFields": null, "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "SCALAR", @@ -42979,7 +51587,8 @@ "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", "inputFields": null, "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "SCALAR", @@ -42987,7 +51596,8 @@ "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.", "inputFields": null, "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "SCALAR", @@ -42995,7 +51605,8 @@ "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", "inputFields": null, "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" }, { "kind": "SCALAR", @@ -43003,7 +51614,8 @@ "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.", "inputFields": null, "interfaces": null, - "possibleTypes": null + "possibleTypes": null, + "__typename": "" } ], "directives": [ @@ -43025,13 +51637,17 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "" }, { "name": "skip", @@ -43051,13 +51667,17 @@ "ofType": { "kind": "SCALAR", "name": "Boolean", - "ofType": null - } + "ofType": null, + "__typename": "" + }, + "__typename": "" }, - "defaultValue": null + "defaultValue": null, + "__typename": "" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "" }, { "name": "deprecated", @@ -43073,13 +51693,17 @@ "type": { "kind": "SCALAR", "name": "String", - "ofType": null + "ofType": null, + "__typename": "" }, - "defaultValue": "\"No longer supported\"" + "defaultValue": "\"No longer supported\"", + "__typename": "" } ], - "isRepeatable": false + "isRepeatable": false, + "__typename": "" } - ] + ], + "__typename": "" } } \ No newline at end of file diff --git a/v2/pkg/starwars/starwars.go b/v2/pkg/starwars/starwars.go index 7752ae1f56..d73758e240 100644 --- a/v2/pkg/starwars/starwars.go +++ b/v2/pkg/starwars/starwars.go @@ -10,24 +10,25 @@ import ( type QueryVariables map[string]interface{} const ( - FileSimpleHeroQuery = "testdata/queries/simple_hero.query" - FileHeroWithOperationNameQuery = "testdata/queries/hero_with_operation_name.query" - FileHeroWithAliasesQuery = "testdata/queries/hero_with_aliases.query" - FileDroidWithArgQuery = "testdata/queries/droid_with_arg.query" - FileDroidWithArgAndVarQuery = "testdata/queries/droid_with_arg_and_var.query" - FileFragmentsQuery = "testdata/queries/fragments.query" - FileDirectivesIncludeQuery = "testdata/queries/directives_include.query" - FileDirectivesSkipQuery = "testdata/queries/directives_skip.query" - FileCreateReviewMutation = "testdata/mutations/create_review.mutation" - FileInlineFragmentsQuery = "testdata/queries/inline_fragments.query" - FileUnionQuery = "testdata/queries/inline_fragments.query" - FileRemainingJedisSubscription = "testdata/subscriptions/remaining_jedis.subscription" - FileIntrospectionQuery = "testdata/queries/introspection.query" - FileMultiQueries = "testdata/queries/multi_queries.query" - FileMultiQueriesWithArguments = "testdata/queries/multi_queries_with_arguments.query" - FileInvalidQuery = "testdata/queries/invalid.query" - FileInvalidFragmentsQuery = "testdata/queries/invalid_fragments.query" - FileInterfaceFragmentsOnUnion = "testdata/queries/interface_fragments_on_union.graphql" + FileSimpleHeroQuery = "testdata/queries/simple_hero.query" + FileHeroWithOperationNameQuery = "testdata/queries/hero_with_operation_name.query" + FileHeroWithAliasesQuery = "testdata/queries/hero_with_aliases.query" + FileDroidWithArgQuery = "testdata/queries/droid_with_arg.query" + FileDroidWithArgAndVarQuery = "testdata/queries/droid_with_arg_and_var.query" + FileFragmentsQuery = "testdata/queries/fragments.query" + FileDirectivesIncludeQuery = "testdata/queries/directives_include.query" + FileDirectivesSkipQuery = "testdata/queries/directives_skip.query" + FileCreateReviewMutation = "testdata/mutations/create_review.mutation" + FileInlineFragmentsQuery = "testdata/queries/inline_fragments.query" + FileUnionQuery = "testdata/queries/inline_fragments.query" + FileRemainingJedisSubscription = "testdata/subscriptions/remaining_jedis.subscription" + FileIntrospectionQuery = "testdata/queries/introspection.query" + FileIntrospectionQueryWithTypenames = "testdata/queries/introspection_with_typenames.query" + FileMultiQueries = "testdata/queries/multi_queries.query" + FileMultiQueriesWithArguments = "testdata/queries/multi_queries_with_arguments.query" + FileInvalidQuery = "testdata/queries/invalid.query" + FileInvalidFragmentsQuery = "testdata/queries/invalid_fragments.query" + FileInterfaceFragmentsOnUnion = "testdata/queries/interface_fragments_on_union.graphql" ) //go:embed testdata diff --git a/v2/pkg/starwars/testdata/queries/introspection_with_typenames.query b/v2/pkg/starwars/testdata/queries/introspection_with_typenames.query new file mode 100644 index 0000000000..45e87bce38 --- /dev/null +++ b/v2/pkg/starwars/testdata/queries/introspection_with_typenames.query @@ -0,0 +1,109 @@ +query IntrospectionQuery { + __schema { + __typename + queryType { + __typename + name + } + mutationType { + __typename + name + } + subscriptionType { + __typename + name + } + types { + ...FullType + } + directives { + __typename + name + description + locations + args { + ...InputValue + } + } + } +} + +fragment FullType on __Type { + __typename + kind + name + description + fields(includeDeprecated: true) { + __typename + name + description + args { + ...InputValue + } + type { + ...TypeRef + } + isDeprecated + deprecationReason + } + inputFields { + ...InputValue + } + interfaces { + ...TypeRef + } + enumValues(includeDeprecated: true) { + __typename + name + description + isDeprecated + deprecationReason + } + possibleTypes { + ...TypeRef + } +} + +fragment InputValue on __InputValue { + __typename + name + description + type { + ...TypeRef + } + defaultValue +} + +fragment TypeRef on __Type { + __typename + kind + name + ofType { + kind + name + ofType { + kind + name + ofType { + kind + name + ofType { + kind + name + ofType { + kind + name + ofType { + kind + name + ofType { + kind + name + } + } + } + } + } + } + } +} \ No newline at end of file