Created
December 5, 2017 18:36
-
-
Save stebunovd/96f989c15cef7238b7da0da6ec372e70 to your computer and use it in GitHub Desktop.
JS GraphQL v1.6.2 plugin failure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JS GraphQL listening on http://127.0.0.1:49975/js-graphql-language-service | |
Setting Project Dir '/Users/dvs/Dropbox/Code/jirobot' | |
Watching '/Users/dvs/Dropbox/Code/jirobot/graphql.config.json' for changes. | |
Watching '/Users/dvs/Dropbox/Code/jirobot/code/frontend/graphql.schema.json' for changes. | |
Loaded schema from '/Users/dvs/Dropbox/Code/jirobot/code/frontend/graphql.schema.json': {"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":null,"subscriptionType":null,"types":[{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"viewer","description":null,"args":[],"type":{"kind":"OBJECT","name":"Viewer","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Viewer","description":null,"fields":[{"name":"id","description":"The ID of the object." ... | |
Loaded schema from '/Users/dvs/Dropbox/Code/jirobot/code/frontend/graphql.schema.json': {"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":null,"subscriptionType":null,"types":[{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"viewer","description":null,"args":[],"type":{"kind":"OBJECT","name":"Viewer","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Viewer","description":null,"fields":[{"name":"id","description":"The ID of the object." ... | |
TypeError: Cannot read property '0' of undefined | |
at /Users/dvs/Library/Application Support/PyCharm2017.3/js-graphql-intellij-plugin/js-graphql-language-service.dist.js:16161:35 | |
at getAnnotations (/Users/dvs/Library/Application Support/PyCharm2017.3/js-graphql-intellij-plugin/js-graphql-language-service.dist.js:161924:27) | |
at /Users/dvs/Library/Application Support/PyCharm2017.3/js-graphql-intellij-plugin/js-graphql-language-service.dist.js:161617:24 | |
at Layer.handle [as handle_request] (/Users/dvs/Library/Application Support/PyCharm2017.3/js-graphql-intellij-plugin/js-graphql-language-service.dist.js:30617:5) | |
at next (/Users/dvs/Library/Application Support/PyCharm2017.3/js-graphql-intellij-plugin/js-graphql-language-service.dist.js:30831:13) | |
at next (/Users/dvs/Library/Application Support/PyCharm2017.3/js-graphql-intellij-plugin/js-graphql-language-service.dist.js:30825:14) | |
at next (/Users/dvs/Library/Application Support/PyCharm2017.3/js-graphql-intellij-plugin/js-graphql-language-service.dist.js:30825:14) | |
at next (/Users/dvs/Library/Application Support/PyCharm2017.3/js-graphql-intellij-plugin/js-graphql-language-service.dist.js:30825:14) | |
at next (/Users/dvs/Library/Application Support/PyCharm2017.3/js-graphql-intellij-plugin/js-graphql-language-service.dist.js:30825:14) | |
at next (/Users/dvs/Library/Application Support/PyCharm2017.3/js-graphql-intellij-plugin/js-graphql-language-service.dist.js:30825:14) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"README_schema" : "Specifies how to load the GraphQL schema that completion, error highlighting, and documentation is based on in the IDE", | |
"schema": { | |
"README_file" : "Remove 'file' to use request url below. A relative or absolute path to the JSON from a schema introspection query, e.g. '{ data: ... }'. Changes to the file are watched.", | |
"file": "code/frontend/graphql.schema.json", | |
"README_request" : "To request the schema from a url instead, remove the 'file' JSON property above (and optionally delete the default graphql.schema.json file).", | |
"request": { | |
"url" : "http://--graphql-server--/path-to-schema-json-or-introspection-endpoint", | |
"method" : "POST", | |
"README_postIntrospectionQuery" : "Whether to POST an introspectionQuery to the url. If the url always returns the schema JSON, set to false and consider using GET", | |
"postIntrospectionQuery" : true, | |
"README_options" : "See the 'Options' section at https://github.com/then/then-request", | |
"options" : { | |
"headers": { | |
"user-agent" : "JS GraphQL" | |
} | |
} | |
} | |
}, | |
"README_endpoints": "A list of GraphQL endpoints that can be queried from '.graphql' files in the IDE", | |
"endpoints" : [ | |
{ | |
"name": "Default (http://localhost:8080/graphql)", | |
"url": "http://localhost:8080/graphql", | |
"options" : { | |
"headers": { | |
"user-agent" : "JS GraphQL" | |
} | |
} | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"__schema": { | |
"queryType": { | |
"name": "Query" | |
}, | |
"mutationType": null, | |
"subscriptionType": null, | |
"types": [ | |
{ | |
"kind": "OBJECT", | |
"name": "Query", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "viewer", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "Viewer", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "Viewer", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "password", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "lastLogin", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "isSuperuser", | |
"description": "Designates that this user has all permissions without explicitly assigning them.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "fullName", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "dateOfBirth", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "githubId", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "githubAccessToken", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "country", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "CountryNode", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "timezone", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "isActive", | |
"description": "Designates whether this user should be treated as active. Unselect this instead of deleting accounts.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "dateJoined", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "groups", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "ViewerConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "userPermissions", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "ViewerConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "positionSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "PositionNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "myIssues", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "submittedIssues", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issuecommentSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueCommentNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issuechangeSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueChangeNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "authoredCommits", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "CommitNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "committedCommits", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "CommitNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "daysoffSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "DaysOffNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "reportSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "ReportNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "allTeams", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "TeamNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "allUsers", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "team", | |
"description": "The ID of the object", | |
"args": [ | |
{ | |
"name": "id", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "TeamNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"description": "An object with an ID", | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": null, | |
"enumValues": null, | |
"possibleTypes": [ | |
{ | |
"kind": "OBJECT", | |
"name": "Viewer", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "CountryNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "HolidayNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "PositionNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "OrganizationNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "TeamNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "ChatStatsNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "CommitNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "RepositoryNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueCommentNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueChangeNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "DaysOffNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "ReportNode", | |
"ofType": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueMentionNode", | |
"ofType": null | |
} | |
] | |
}, | |
{ | |
"kind": "SCALAR", | |
"name": "ID", | |
"description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", | |
"fields": null, | |
"inputFields": null, | |
"interfaces": null, | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "SCALAR", | |
"name": "String", | |
"description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", | |
"fields": null, | |
"inputFields": null, | |
"interfaces": null, | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"description": "The `DateTime` scalar type represents a DateTime\nvalue as specified by\n[iso8601](https://en.wikipedia.org/wiki/ISO_8601).", | |
"fields": null, | |
"inputFields": null, | |
"interfaces": null, | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"description": "The `Boolean` scalar type represents `true` or `false`.", | |
"fields": null, | |
"inputFields": null, | |
"interfaces": null, | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "SCALAR", | |
"name": "Int", | |
"description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since represented in JSON as double-precision floating point numbers specifiedby [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", | |
"fields": null, | |
"inputFields": null, | |
"interfaces": null, | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "CountryNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "name", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "code2", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "code3", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "userSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "ViewerConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "holidaySet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "HolidayNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "ViewerConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "ViewerEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "hasNextPage", | |
"description": "When paginating forwards, are there more items?", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "hasPreviousPage", | |
"description": "When paginating backwards, are there more items?", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "startCursor", | |
"description": "When paginating backwards, the cursor to continue.", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "endCursor", | |
"description": "When paginating forwards, the cursor to continue.", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "ViewerEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "Viewer", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "HolidayNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "HolidayNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "HolidayNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "HolidayNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "HolidayNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "name", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "country", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "CountryNode", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "date", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "workday", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "PositionNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PositionNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "PositionNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "PositionNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "PositionNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "user", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "Viewer", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "organization", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "OrganizationNode", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "team", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "TeamNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "position", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "fromDate", | |
"description": "Leave blank if unknown", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "toDate", | |
"description": "Leave blank if this is current position", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "OrganizationNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "name", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "teamSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "TeamNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "positionSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "PositionNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "TeamNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "TeamNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "TeamNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "TeamNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "TeamNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "organization", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "OrganizationNode", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "name", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "positionSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "PositionNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "chatStats", | |
"description": null, | |
"args": [ | |
{ | |
"name": "periodFrom", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "periodTo", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "ChatStatsNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "commits", | |
"description": null, | |
"args": [ | |
{ | |
"name": "periodFrom", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "periodTo", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "CommitNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "daysOff", | |
"description": null, | |
"args": [ | |
{ | |
"name": "periodFrom", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "periodTo", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "DaysOffNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "holidays", | |
"description": null, | |
"args": [ | |
{ | |
"name": "periodFrom", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "periodTo", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "HolidayNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issueChanges", | |
"description": null, | |
"args": [ | |
{ | |
"name": "periodFrom", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "periodTo", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueChangeNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issueComments", | |
"description": null, | |
"args": [ | |
{ | |
"name": "periodFrom", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "periodTo", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueCommentNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issueMentions", | |
"description": null, | |
"args": [ | |
{ | |
"name": "periodFrom", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "periodTo", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueMentionNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "reports", | |
"description": null, | |
"args": [ | |
{ | |
"name": "periodFrom", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "periodTo", | |
"description": null, | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "ReportNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "users", | |
"description": null, | |
"args": [ | |
{ | |
"name": "periodFrom", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "periodTo", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "ChatStatsNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "ChatStatsNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "ChatStatsNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "ChatStatsNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "ChatStatsNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "userId", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "channelName", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "periodStart", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "count", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "CommitNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "CommitNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "CommitNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "CommitNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "CommitNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "hash", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "repository", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "RepositoryNode", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "ref", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "message", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "additions", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "deletions", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "timestamp", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "syncId", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "author", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "committer", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issues", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "url", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "RepositoryNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "githubId", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "name", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "private", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "lastFullSync", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "syncId", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "commitSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "CommitNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "fullName", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "url", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "password", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "lastLogin", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "isSuperuser", | |
"description": "Designates that this user has all permissions without explicitly assigning them.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "fullName", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "dateOfBirth", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "githubId", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "githubAccessToken", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "country", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "CountryNode", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "timezone", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "isActive", | |
"description": "Designates whether this user should be treated as active. Unselect this instead of deleting accounts.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "dateJoined", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "groups", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "ViewerConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "userPermissions", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "ViewerConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "positionSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "PositionNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "myIssues", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "submittedIssues", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issuecommentSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueCommentNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issuechangeSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueChangeNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "authoredCommits", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "CommitNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "committedCommits", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "CommitNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "daysoffSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "DaysOffNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "reportSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "ReportNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "avatar", | |
"description": null, | |
"args": [ | |
{ | |
"name": "size", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": "39" | |
} | |
], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "positions", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "PositionNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "tzOffset", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "IssueNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "jiraId", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "summary", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "priority", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "dueDate", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "jiraKey", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "created", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "updated", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issuecommentSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueCommentNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issuechangeSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueChangeNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "commitSet", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "CommitNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "assignee", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "reporter", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "changes", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueChangeNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "comments", | |
"description": null, | |
"args": [ | |
{ | |
"name": "before", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "after", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "first", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
}, | |
{ | |
"name": "last", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": null | |
} | |
], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueCommentNodeConnection", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "url", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueCommentNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "IssueCommentNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueCommentNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueCommentNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueCommentNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "jiraId", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issue", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "IssueNode", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "text", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "created", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "updated", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "preview", | |
"description": null, | |
"args": [ | |
{ | |
"name": "length", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"defaultValue": "120" | |
} | |
], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "user", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueChangeNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "IssueChangeNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueChangeNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueChangeNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueChangeNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "jiraId", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "Int", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issue", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "IssueNode", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "created", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "field", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "fromValue", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "fromString", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "toValue", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "toString", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "user", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "DaysOffNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "DaysOffNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "DaysOffNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "DaysOffNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "DaysOffNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "start", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "end", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "comment", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "user", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "reason", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "ReportNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "ReportNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "ReportNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "ReportNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "ReportNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "date", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "DateTime", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "published", | |
"description": "When you check this box and click Save, your report will become read-only and published in accordance with Notifications settings.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "text", | |
"description": "", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "user", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueMentionNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "IssueMentionNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueMentionNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueMentionNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "IssueMentionNode", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "id", | |
"description": "The ID of the object.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "ID", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "issue", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "IssueNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "user", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "channelName", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "timestamp", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [ | |
{ | |
"kind": "INTERFACE", | |
"name": "Node", | |
"ofType": null | |
} | |
], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "UserNodeConnection", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "pageInfo", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "PageInfo", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "edges", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "UserNodeEdge", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "UserNodeEdge", | |
"description": null, | |
"fields": [ | |
{ | |
"name": "node", | |
"description": "The item at the end of the edge", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "UserNode", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "cursor", | |
"description": "A cursor for use in pagination", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "__Schema", | |
"description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation and subscription operations.", | |
"fields": [ | |
{ | |
"name": "types", | |
"description": "A list of all types supported by this server.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__Type", | |
"ofType": null | |
} | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "queryType", | |
"description": "The type that query operations will be rooted at.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__Type", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "mutationType", | |
"description": "If this server supports mutation, the type that mutation operations will be rooted at.", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "__Type", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "subscriptionType", | |
"description": "If this server support subscription, the type that subscription operations will be rooted at.", | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "__Type", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "directives", | |
"description": "A list of all directives supported by this server.", | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__Directive", | |
"ofType": null | |
} | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "__Type", | |
"description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", | |
"fields": [ | |
{ | |
"name": "kind", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "ENUM", | |
"name": "__TypeKind", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "name", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "description", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "fields", | |
"description": null, | |
"args": [ | |
{ | |
"name": "includeDeprecated", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
}, | |
"defaultValue": "false" | |
} | |
], | |
"type": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__Field", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "interfaces", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__Type", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "possibleTypes", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__Type", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "enumValues", | |
"description": null, | |
"args": [ | |
{ | |
"name": "includeDeprecated", | |
"description": null, | |
"type": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
}, | |
"defaultValue": "false" | |
} | |
], | |
"type": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__EnumValue", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "inputFields", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__InputValue", | |
"ofType": null | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "ofType", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "OBJECT", | |
"name": "__Type", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "ENUM", | |
"name": "__TypeKind", | |
"description": "An enum describing what kind of type a given `__Type` is", | |
"fields": null, | |
"inputFields": null, | |
"interfaces": null, | |
"enumValues": [ | |
{ | |
"name": "SCALAR", | |
"description": "Indicates this type is a scalar.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "OBJECT", | |
"description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "INTERFACE", | |
"description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "UNION", | |
"description": "Indicates this type is a union. `possibleTypes` is a valid field.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "ENUM", | |
"description": "Indicates this type is an enum. `enumValues` is a valid field.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "INPUT_OBJECT", | |
"description": "Indicates this type is an input object. `inputFields` is a valid field.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "LIST", | |
"description": "Indicates this type is a list. `ofType` is a valid field.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "NON_NULL", | |
"description": "Indicates this type is a non-null. `ofType` is a valid field.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "__Field", | |
"description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", | |
"fields": [ | |
{ | |
"name": "name", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "description", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "args", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__InputValue", | |
"ofType": null | |
} | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "type", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__Type", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "isDeprecated", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "deprecationReason", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "__InputValue", | |
"description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", | |
"fields": [ | |
{ | |
"name": "name", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "description", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "type", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__Type", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "defaultValue", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "__EnumValue", | |
"description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", | |
"fields": [ | |
{ | |
"name": "name", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "description", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "isDeprecated", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "deprecationReason", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "OBJECT", | |
"name": "__Directive", | |
"description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", | |
"fields": [ | |
{ | |
"name": "name", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "description", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "SCALAR", | |
"name": "String", | |
"ofType": null | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "locations", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "ENUM", | |
"name": "__DirectiveLocation", | |
"ofType": null | |
} | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "args", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "LIST", | |
"name": null, | |
"ofType": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "OBJECT", | |
"name": "__InputValue", | |
"ofType": null | |
} | |
} | |
} | |
}, | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "onOperation", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": true, | |
"deprecationReason": "Use `locations`." | |
}, | |
{ | |
"name": "onFragment", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": true, | |
"deprecationReason": "Use `locations`." | |
}, | |
{ | |
"name": "onField", | |
"description": null, | |
"args": [], | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"isDeprecated": true, | |
"deprecationReason": "Use `locations`." | |
} | |
], | |
"inputFields": null, | |
"interfaces": [], | |
"enumValues": null, | |
"possibleTypes": null | |
}, | |
{ | |
"kind": "ENUM", | |
"name": "__DirectiveLocation", | |
"description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", | |
"fields": null, | |
"inputFields": null, | |
"interfaces": null, | |
"enumValues": [ | |
{ | |
"name": "QUERY", | |
"description": "Location adjacent to a query operation.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "MUTATION", | |
"description": "Location adjacent to a mutation operation.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "SUBSCRIPTION", | |
"description": "Location adjacent to a subscription operation.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "FIELD", | |
"description": "Location adjacent to a field.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "FRAGMENT_DEFINITION", | |
"description": "Location adjacent to a fragment definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "FRAGMENT_SPREAD", | |
"description": "Location adjacent to a fragment spread.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "INLINE_FRAGMENT", | |
"description": "Location adjacent to an inline fragment.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "SCHEMA", | |
"description": "Location adjacent to a schema definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "SCALAR", | |
"description": "Location adjacent to a scalar definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "OBJECT", | |
"description": "Location adjacent to an object definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "FIELD_DEFINITION", | |
"description": "Location adjacent to a field definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "ARGUMENT_DEFINITION", | |
"description": "Location adjacent to an argument definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "INTERFACE", | |
"description": "Location adjacent to an interface definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "UNION", | |
"description": "Location adjacent to a union definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "ENUM", | |
"description": "Location adjacent to an enum definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "ENUM_VALUE", | |
"description": "Location adjacent to an enum value definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "INPUT_OBJECT", | |
"description": "Location adjacent to an input object definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
}, | |
{ | |
"name": "INPUT_FIELD_DEFINITION", | |
"description": "Location adjacent to an input object field definition.", | |
"isDeprecated": false, | |
"deprecationReason": null | |
} | |
], | |
"possibleTypes": null | |
} | |
], | |
"directives": [ | |
{ | |
"name": "include", | |
"description": "Directs the executor to include this field or fragment only when the `if` argument is true.", | |
"locations": [ | |
"FIELD", | |
"FRAGMENT_SPREAD", | |
"INLINE_FRAGMENT" | |
], | |
"args": [ | |
{ | |
"name": "if", | |
"description": "Included when true.", | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
} | |
] | |
}, | |
{ | |
"name": "skip", | |
"description": "Directs the executor to skip this field or fragment when the `if` argument is true.", | |
"locations": [ | |
"FIELD", | |
"FRAGMENT_SPREAD", | |
"INLINE_FRAGMENT" | |
], | |
"args": [ | |
{ | |
"name": "if", | |
"description": "Skipped when true.", | |
"type": { | |
"kind": "NON_NULL", | |
"name": null, | |
"ofType": { | |
"kind": "SCALAR", | |
"name": "Boolean", | |
"ofType": null | |
} | |
}, | |
"defaultValue": null | |
} | |
] | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
GraphQL query (one of them, I suppose this one is causing the issue):