diff options
author | Dmitry <[email protected]> | 2020-08-14 15:58:04 +0100 |
---|---|---|
committer | Dmitry <[email protected]> | 2020-08-14 17:09:47 +0100 |
commit | c8a6ecc075f5198a0b197d5d99afa517d4a9818d (patch) | |
tree | 913dd97be5e2c75c8ab0636c43d6b1fbe50037b2 /xtask/src | |
parent | 034db28c542c04b22147da6722328bc74ff99386 (diff) |
Revert "replase sparse-checkout by github api"
This reverts commit 034db28c542c04b22147da6722328bc74ff99386.
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/codegen.rs | 6 | ||||
-rw-r--r-- | xtask/src/codegen/gen_unstable_future_descriptor.rs | 175 | ||||
-rw-r--r-- | xtask/src/codegen/last_commit_that_affected_path.graphql | 17 | ||||
-rw-r--r-- | xtask/src/codegen/schema.graphql | 38281 |
4 files changed, 18 insertions, 38461 deletions
diff --git a/xtask/src/codegen.rs b/xtask/src/codegen.rs index fca35792b..c7cac50fe 100644 --- a/xtask/src/codegen.rs +++ b/xtask/src/codegen.rs | |||
@@ -40,10 +40,8 @@ const AST_TOKENS: &str = "crates/ra_syntax/src/ast/generated/tokens.rs"; | |||
40 | const ASSISTS_DIR: &str = "crates/ra_assists/src/handlers"; | 40 | const ASSISTS_DIR: &str = "crates/ra_assists/src/handlers"; |
41 | const ASSISTS_TESTS: &str = "crates/ra_assists/src/tests/generated.rs"; | 41 | const ASSISTS_TESTS: &str = "crates/ra_assists/src/tests/generated.rs"; |
42 | 42 | ||
43 | const REPO_OWNER: &str = "rust-lang"; | 43 | const REPOSITORY_URL: &str = "https://github.com/rust-lang/rust"; |
44 | const REPO_NAME: &str = "rust"; | 44 | const UNSTABLE_FEATURE: &str = "crates/ra_ide/src/completion/unstable_feature_descriptor.rs"; |
45 | const REPO_PATH: &str = "src/doc/unstable-book/src"; | ||
46 | const GENERATION_DESTINATION: &str = "crates/ra_ide/src/completion/unstable_feature_descriptor.rs"; | ||
47 | 45 | ||
48 | #[derive(Debug, PartialEq, Eq, Clone, Copy)] | 46 | #[derive(Debug, PartialEq, Eq, Clone, Copy)] |
49 | pub enum Mode { | 47 | pub enum Mode { |
diff --git a/xtask/src/codegen/gen_unstable_future_descriptor.rs b/xtask/src/codegen/gen_unstable_future_descriptor.rs index eaf063371..fee68c365 100644 --- a/xtask/src/codegen/gen_unstable_future_descriptor.rs +++ b/xtask/src/codegen/gen_unstable_future_descriptor.rs | |||
@@ -2,81 +2,27 @@ | |||
2 | 2 | ||
3 | use crate::codegen::update; | 3 | use crate::codegen::update; |
4 | use crate::codegen::{self, project_root, Mode, Result}; | 4 | use crate::codegen::{self, project_root, Mode, Result}; |
5 | use chrono::prelude::*; | ||
6 | use fs::read_to_string; | ||
7 | use graphql_client::*; | ||
8 | use proc_macro2::TokenStream; | ||
9 | use quote::quote; | 5 | use quote::quote; |
10 | use regex::Regex; | ||
11 | use reqwest; | ||
12 | use serde::*; | ||
13 | use std::fs; | 6 | use std::fs; |
14 | use std::fs::File; | ||
15 | use std::io::copy; | ||
16 | use std::io::prelude::*; | ||
17 | use std::path::PathBuf; | ||
18 | use std::process::Command; | 7 | use std::process::Command; |
19 | use walkdir::WalkDir; | 8 | use walkdir::WalkDir; |
20 | 9 | ||
21 | type URI = String; | 10 | pub fn generate_unstable_future_descriptor(mode: Mode) -> Result<()> { |
22 | type DateTime = String; | 11 | let path = project_root().join(codegen::STORAGE); |
23 | 12 | fs::create_dir_all(path.clone())?; | |
24 | #[derive(GraphQLQuery)] | ||
25 | #[graphql( | ||
26 | schema_path = "src/codegen/schema.graphql", | ||
27 | query_path = "src/codegen/last_commit_that_affected_path.graphql" | ||
28 | )] | ||
29 | struct LastCommitThatAffectedPath; | ||
30 | |||
31 | fn deep_destructuring( | ||
32 | response_body: Response<last_commit_that_affected_path::ResponseData>, | ||
33 | ) -> CommitInfo { | ||
34 | let t = response_body.data.unwrap().repository.unwrap().object.unwrap().on; | ||
35 | |||
36 | use last_commit_that_affected_path::LastCommitThatAffectedPathRepositoryObjectOn::Commit; | ||
37 | let commit = match t { | ||
38 | Commit(data) => data, | ||
39 | _ => panic!("type does not match"), | ||
40 | }; | ||
41 | let edges = commit.history.edges.unwrap(); | ||
42 | let node = edges.first().unwrap().as_ref().unwrap().node.as_ref().unwrap(); | ||
43 | CommitInfo { commit_url: node.commit_url.clone(), committed_date: node.committed_date.clone() } | ||
44 | } | ||
45 | |||
46 | struct CommitInfo { | ||
47 | commit_url: String, | ||
48 | committed_date: String, | ||
49 | } | ||
50 | |||
51 | fn last_update( | ||
52 | owner: &str, | ||
53 | name: &str, | ||
54 | path: &str, | ||
55 | auth_token: Option<&str>, | ||
56 | ) -> Result<CommitInfo> { | ||
57 | let query = | ||
58 | LastCommitThatAffectedPath::build_query(last_commit_that_affected_path::Variables { | ||
59 | owner: owner.to_owned(), | ||
60 | name: name.to_owned(), | ||
61 | path: path.to_owned(), | ||
62 | }); | ||
63 | |||
64 | let client = reqwest::blocking::Client::new(); | ||
65 | let mut headers = reqwest::header::HeaderMap::new(); | ||
66 | headers.insert("User-Agent", "https://github.com/rust-analyzer/rust-analyzer".parse()?); | ||
67 | let mut request = client.post("https://api.github.com/graphql").headers(headers).json(&query); | ||
68 | |||
69 | if auth_token.is_some() { | ||
70 | request = request.bearer_auth(auth_token.unwrap()); | ||
71 | } | ||
72 | |||
73 | let response = request.send()?; | ||
74 | 13 | ||
75 | let response_body: Response<last_commit_that_affected_path::ResponseData> = response.json()?; | 14 | Command::new("git").current_dir(path.clone()).arg("init").output()?; |
76 | Ok(deep_destructuring(response_body)) | 15 | Command::new("git") |
77 | } | 16 | .current_dir(path.clone()) |
17 | .args(&["remote", "add", "-f", "origin", codegen::REPOSITORY_URL]) | ||
18 | .output()?; | ||
19 | Command::new("git") | ||
20 | .current_dir(path.clone()) | ||
21 | .args(&["sparse-checkout", "set", "/src/doc/unstable-book/src/"]) | ||
22 | .output()?; | ||
23 | Command::new("git").current_dir(path.clone()).args(&["pull", "origin", "master"]).output()?; | ||
78 | 24 | ||
79 | fn generate_descriptor(src_dir: PathBuf) -> Result<TokenStream> { | 25 | let src_dir = path.join("src/doc/unstable-book/src"); |
80 | let files = WalkDir::new(src_dir.join("language-features")) | 26 | let files = WalkDir::new(src_dir.join("language-features")) |
81 | .into_iter() | 27 | .into_iter() |
82 | .chain(WalkDir::new(src_dir.join("library-features"))) | 28 | .chain(WalkDir::new(src_dir.join("library-features"))) |
@@ -107,98 +53,9 @@ fn generate_descriptor(src_dir: PathBuf) -> Result<TokenStream> { | |||
107 | #(#definitions),* | 53 | #(#definitions),* |
108 | ]; | 54 | ]; |
109 | }; | 55 | }; |
110 | Ok(ts) | ||
111 | } | ||
112 | |||
113 | fn add_anchor(text: impl std::fmt::Display, anchor: &str) -> String { | ||
114 | let anchor_str = format!( | ||
115 | r#"//The anchor is used to check if file is up to date and represent the time | ||
116 | //of the last commit that affected path where located data for generation | ||
117 | //ANCHOR: {}"#, | ||
118 | anchor | ||
119 | ); | ||
120 | format!("{}\n\n{}\n", anchor_str, text) | ||
121 | } | ||
122 | |||
123 | fn is_actual(path: &PathBuf, str_datetime: &str) -> bool { | ||
124 | let re = Regex::new(r"//ANCHOR: (\S*)").unwrap(); | ||
125 | let opt_str = fs::read_to_string(path); | ||
126 | if opt_str.is_err() { | ||
127 | return false; | ||
128 | } | ||
129 | let text = opt_str.unwrap(); | ||
130 | let opt_datetime = re.captures(text.as_str()); | ||
131 | if opt_datetime.is_none() { | ||
132 | return false; | ||
133 | } | ||
134 | let str_file_dt = opt_datetime.unwrap().get(1).unwrap().as_str(); | ||
135 | let file_dt = str_file_dt.parse::<chrono::DateTime<Utc>>().unwrap(); | ||
136 | let datetime = str_datetime.parse::<chrono::DateTime<Utc>>().unwrap(); | ||
137 | |||
138 | file_dt == datetime | ||
139 | } | ||
140 | |||
141 | fn download_tar( | ||
142 | owner: &str, | ||
143 | name: &str, | ||
144 | auth_token: Option<&str>, | ||
145 | destination: &PathBuf, | ||
146 | fname: &str, | ||
147 | ) -> Result<()> { | ||
148 | let mut headers = reqwest::header::HeaderMap::new(); | ||
149 | headers.insert("User-Agent", "https://github.com/rust-analyzer/rust-analyzer".parse()?); | ||
150 | let mut request = reqwest::blocking::Client::new() | ||
151 | .get(format!("https://api.github.com/repos/{}/{}/tarball", owner, name).as_str()) | ||
152 | .headers(headers); | ||
153 | |||
154 | if auth_token.is_some() { | ||
155 | request = request.bearer_auth(auth_token.unwrap()); | ||
156 | } | ||
157 | |||
158 | let response = request.send()?; | ||
159 | let download_url = response.url(); | ||
160 | |||
161 | let mut response = reqwest::blocking::Client::new() | ||
162 | .get(download_url.as_str()) | ||
163 | .send()?; | ||
164 | |||
165 | let mut n = fname.to_string(); | ||
166 | n.push_str(".tar.gz"); | ||
167 | let fpath = destination.join(n); | ||
168 | let mut file = File::create(fpath)?; | ||
169 | response.copy_to(&mut file)?; | ||
170 | |||
171 | Ok(()) | ||
172 | } | ||
173 | |||
174 | pub fn generate_unstable_future_descriptor(mode: Mode) -> Result<()> { | ||
175 | const auth_token: Option<&str> = None; | ||
176 | |||
177 | let path = project_root().join(codegen::STORAGE); | ||
178 | fs::create_dir_all(path.clone())?; | ||
179 | |||
180 | let commit_info = | ||
181 | last_update(codegen::REPO_OWNER, codegen::REPO_NAME, codegen::REPO_PATH, auth_token)?; | ||
182 | |||
183 | if is_actual( | ||
184 | &project_root().join(codegen::GENERATION_DESTINATION), | ||
185 | commit_info.committed_date.as_str(), | ||
186 | ) { | ||
187 | return Ok(()); | ||
188 | } | ||
189 | |||
190 | download_tar(codegen::REPO_OWNER, codegen::REPO_NAME, auth_token, &path, "repository")?; | ||
191 | Command::new("tar") | ||
192 | .args(&["-xvf", concat!("repository",".tar.gz"), "--wildcards", "*/src/doc/unstable-book/src", "--strip=1"]) | ||
193 | .current_dir(codegen::STORAGE) | ||
194 | .output()?; | ||
195 | |||
196 | let src_dir = path.join(codegen::REPO_PATH); | ||
197 | let gen_holder = generate_descriptor(src_dir)?.to_string(); | ||
198 | let gen_holder = add_anchor(gen_holder, commit_info.committed_date.as_str()); | ||
199 | 56 | ||
200 | let destination = project_root().join(codegen::GENERATION_DESTINATION); | 57 | let destination = project_root().join(codegen::UNSTABLE_FEATURE); |
201 | let contents = crate::reformat(gen_holder)?; | 58 | let contents = crate::reformat(ts.to_string())?; |
202 | update(destination.as_path(), &contents, mode)?; | 59 | update(destination.as_path(), &contents, mode)?; |
203 | 60 | ||
204 | Ok(()) | 61 | Ok(()) |
diff --git a/xtask/src/codegen/last_commit_that_affected_path.graphql b/xtask/src/codegen/last_commit_that_affected_path.graphql deleted file mode 100644 index 8b256f392..000000000 --- a/xtask/src/codegen/last_commit_that_affected_path.graphql +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | query LastCommitThatAffectedPath($owner: String!, $name: String!, $path: String!) { | ||
2 | repository(owner: $owner, name: $name) { | ||
3 | object(expression: "master") { | ||
4 | __typename | ||
5 | ... on Commit { | ||
6 | history(path: $path, first:1) { | ||
7 | edges { | ||
8 | node { | ||
9 | commitUrl | ||
10 | committedDate | ||
11 | } | ||
12 | } | ||
13 | } | ||
14 | } | ||
15 | } | ||
16 | } | ||
17 | } \ No newline at end of file | ||
diff --git a/xtask/src/codegen/schema.graphql b/xtask/src/codegen/schema.graphql deleted file mode 100644 index 446c54b3e..000000000 --- a/xtask/src/codegen/schema.graphql +++ /dev/null | |||
@@ -1,38281 +0,0 @@ | |||
1 | """ | ||
2 | Defines what type of global IDs are accepted for a mutation argument of type ID. | ||
3 | """ | ||
4 | directive @possibleTypes( | ||
5 | """ | ||
6 | Abstract type of accepted global ID | ||
7 | """ | ||
8 | abstractType: String | ||
9 | |||
10 | """ | ||
11 | Accepted types of global IDs. | ||
12 | """ | ||
13 | concreteTypes: [String!]! | ||
14 | ) on INPUT_FIELD_DEFINITION | ||
15 | |||
16 | """ | ||
17 | Marks an element of a GraphQL schema as only available via a preview header | ||
18 | """ | ||
19 | directive @preview( | ||
20 | """ | ||
21 | The identifier of the API preview that toggles this field. | ||
22 | """ | ||
23 | toggledBy: String! | ||
24 | ) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION | ||
25 | |||
26 | """ | ||
27 | Autogenerated input type of AcceptEnterpriseAdministratorInvitation | ||
28 | """ | ||
29 | input AcceptEnterpriseAdministratorInvitationInput { | ||
30 | """ | ||
31 | A unique identifier for the client performing the mutation. | ||
32 | """ | ||
33 | clientMutationId: String | ||
34 | |||
35 | """ | ||
36 | The id of the invitation being accepted | ||
37 | """ | ||
38 | invitationId: ID! @possibleTypes(concreteTypes: ["EnterpriseAdministratorInvitation"]) | ||
39 | } | ||
40 | |||
41 | """ | ||
42 | Autogenerated return type of AcceptEnterpriseAdministratorInvitation | ||
43 | """ | ||
44 | type AcceptEnterpriseAdministratorInvitationPayload { | ||
45 | """ | ||
46 | A unique identifier for the client performing the mutation. | ||
47 | """ | ||
48 | clientMutationId: String | ||
49 | |||
50 | """ | ||
51 | The invitation that was accepted. | ||
52 | """ | ||
53 | invitation: EnterpriseAdministratorInvitation | ||
54 | |||
55 | """ | ||
56 | A message confirming the result of accepting an administrator invitation. | ||
57 | """ | ||
58 | message: String | ||
59 | } | ||
60 | |||
61 | """ | ||
62 | Autogenerated input type of AcceptTopicSuggestion | ||
63 | """ | ||
64 | input AcceptTopicSuggestionInput { | ||
65 | """ | ||
66 | A unique identifier for the client performing the mutation. | ||
67 | """ | ||
68 | clientMutationId: String | ||
69 | |||
70 | """ | ||
71 | The name of the suggested topic. | ||
72 | """ | ||
73 | name: String! | ||
74 | |||
75 | """ | ||
76 | The Node ID of the repository. | ||
77 | """ | ||
78 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
79 | } | ||
80 | |||
81 | """ | ||
82 | Autogenerated return type of AcceptTopicSuggestion | ||
83 | """ | ||
84 | type AcceptTopicSuggestionPayload { | ||
85 | """ | ||
86 | A unique identifier for the client performing the mutation. | ||
87 | """ | ||
88 | clientMutationId: String | ||
89 | |||
90 | """ | ||
91 | The accepted topic. | ||
92 | """ | ||
93 | topic: Topic | ||
94 | } | ||
95 | |||
96 | """ | ||
97 | The possible capabilities for action executions setting. | ||
98 | """ | ||
99 | enum ActionExecutionCapabilitySetting { | ||
100 | """ | ||
101 | All action executions are enabled. | ||
102 | """ | ||
103 | ALL_ACTIONS | ||
104 | |||
105 | """ | ||
106 | All action executions are disabled. | ||
107 | """ | ||
108 | DISABLED | ||
109 | |||
110 | """ | ||
111 | Only actions defined within the repo are allowed. | ||
112 | """ | ||
113 | LOCAL_ACTIONS_ONLY | ||
114 | |||
115 | """ | ||
116 | Organization administrators action execution capabilities. | ||
117 | """ | ||
118 | NO_POLICY | ||
119 | } | ||
120 | |||
121 | """ | ||
122 | Represents an object which can take actions on GitHub. Typically a User or Bot. | ||
123 | """ | ||
124 | interface Actor { | ||
125 | """ | ||
126 | A URL pointing to the actor's public avatar. | ||
127 | """ | ||
128 | avatarUrl( | ||
129 | """ | ||
130 | The size of the resulting square image. | ||
131 | """ | ||
132 | size: Int | ||
133 | ): URI! | ||
134 | |||
135 | """ | ||
136 | The username of the actor. | ||
137 | """ | ||
138 | login: String! | ||
139 | |||
140 | """ | ||
141 | The HTTP path for this actor. | ||
142 | """ | ||
143 | resourcePath: URI! | ||
144 | |||
145 | """ | ||
146 | The HTTP URL for this actor. | ||
147 | """ | ||
148 | url: URI! | ||
149 | } | ||
150 | |||
151 | """ | ||
152 | Location information for an actor | ||
153 | """ | ||
154 | type ActorLocation { | ||
155 | """ | ||
156 | City | ||
157 | """ | ||
158 | city: String | ||
159 | |||
160 | """ | ||
161 | Country name | ||
162 | """ | ||
163 | country: String | ||
164 | |||
165 | """ | ||
166 | Country code | ||
167 | """ | ||
168 | countryCode: String | ||
169 | |||
170 | """ | ||
171 | Region name | ||
172 | """ | ||
173 | region: String | ||
174 | |||
175 | """ | ||
176 | Region or state code | ||
177 | """ | ||
178 | regionCode: String | ||
179 | } | ||
180 | |||
181 | """ | ||
182 | Autogenerated input type of AddAssigneesToAssignable | ||
183 | """ | ||
184 | input AddAssigneesToAssignableInput { | ||
185 | """ | ||
186 | The id of the assignable object to add assignees to. | ||
187 | """ | ||
188 | assignableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Assignable") | ||
189 | |||
190 | """ | ||
191 | The id of users to add as assignees. | ||
192 | """ | ||
193 | assigneeIds: [ID!]! @possibleTypes(concreteTypes: ["User"]) | ||
194 | |||
195 | """ | ||
196 | A unique identifier for the client performing the mutation. | ||
197 | """ | ||
198 | clientMutationId: String | ||
199 | } | ||
200 | |||
201 | """ | ||
202 | Autogenerated return type of AddAssigneesToAssignable | ||
203 | """ | ||
204 | type AddAssigneesToAssignablePayload { | ||
205 | """ | ||
206 | The item that was assigned. | ||
207 | """ | ||
208 | assignable: Assignable | ||
209 | |||
210 | """ | ||
211 | A unique identifier for the client performing the mutation. | ||
212 | """ | ||
213 | clientMutationId: String | ||
214 | } | ||
215 | |||
216 | """ | ||
217 | Autogenerated input type of AddComment | ||
218 | """ | ||
219 | input AddCommentInput { | ||
220 | """ | ||
221 | The contents of the comment. | ||
222 | """ | ||
223 | body: String! | ||
224 | |||
225 | """ | ||
226 | A unique identifier for the client performing the mutation. | ||
227 | """ | ||
228 | clientMutationId: String | ||
229 | |||
230 | """ | ||
231 | The Node ID of the subject to modify. | ||
232 | """ | ||
233 | subjectId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "IssueOrPullRequest") | ||
234 | } | ||
235 | |||
236 | """ | ||
237 | Autogenerated return type of AddComment | ||
238 | """ | ||
239 | type AddCommentPayload { | ||
240 | """ | ||
241 | A unique identifier for the client performing the mutation. | ||
242 | """ | ||
243 | clientMutationId: String | ||
244 | |||
245 | """ | ||
246 | The edge from the subject's comment connection. | ||
247 | """ | ||
248 | commentEdge: IssueCommentEdge | ||
249 | |||
250 | """ | ||
251 | The subject | ||
252 | """ | ||
253 | subject: Node | ||
254 | |||
255 | """ | ||
256 | The edge from the subject's timeline connection. | ||
257 | """ | ||
258 | timelineEdge: IssueTimelineItemEdge | ||
259 | } | ||
260 | |||
261 | """ | ||
262 | Autogenerated input type of AddLabelsToLabelable | ||
263 | """ | ||
264 | input AddLabelsToLabelableInput { | ||
265 | """ | ||
266 | A unique identifier for the client performing the mutation. | ||
267 | """ | ||
268 | clientMutationId: String | ||
269 | |||
270 | """ | ||
271 | The ids of the labels to add. | ||
272 | """ | ||
273 | labelIds: [ID!]! @possibleTypes(concreteTypes: ["Label"]) | ||
274 | |||
275 | """ | ||
276 | The id of the labelable object to add labels to. | ||
277 | """ | ||
278 | labelableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Labelable") | ||
279 | } | ||
280 | |||
281 | """ | ||
282 | Autogenerated return type of AddLabelsToLabelable | ||
283 | """ | ||
284 | type AddLabelsToLabelablePayload { | ||
285 | """ | ||
286 | A unique identifier for the client performing the mutation. | ||
287 | """ | ||
288 | clientMutationId: String | ||
289 | |||
290 | """ | ||
291 | The item that was labeled. | ||
292 | """ | ||
293 | labelable: Labelable | ||
294 | } | ||
295 | |||
296 | """ | ||
297 | Autogenerated input type of AddProjectCard | ||
298 | """ | ||
299 | input AddProjectCardInput { | ||
300 | """ | ||
301 | A unique identifier for the client performing the mutation. | ||
302 | """ | ||
303 | clientMutationId: String | ||
304 | |||
305 | """ | ||
306 | The content of the card. Must be a member of the ProjectCardItem union | ||
307 | """ | ||
308 | contentId: ID @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "ProjectCardItem") | ||
309 | |||
310 | """ | ||
311 | The note on the card. | ||
312 | """ | ||
313 | note: String | ||
314 | |||
315 | """ | ||
316 | The Node ID of the ProjectColumn. | ||
317 | """ | ||
318 | projectColumnId: ID! @possibleTypes(concreteTypes: ["ProjectColumn"]) | ||
319 | } | ||
320 | |||
321 | """ | ||
322 | Autogenerated return type of AddProjectCard | ||
323 | """ | ||
324 | type AddProjectCardPayload { | ||
325 | """ | ||
326 | The edge from the ProjectColumn's card connection. | ||
327 | """ | ||
328 | cardEdge: ProjectCardEdge | ||
329 | |||
330 | """ | ||
331 | A unique identifier for the client performing the mutation. | ||
332 | """ | ||
333 | clientMutationId: String | ||
334 | |||
335 | """ | ||
336 | The ProjectColumn | ||
337 | """ | ||
338 | projectColumn: ProjectColumn | ||
339 | } | ||
340 | |||
341 | """ | ||
342 | Autogenerated input type of AddProjectColumn | ||
343 | """ | ||
344 | input AddProjectColumnInput { | ||
345 | """ | ||
346 | A unique identifier for the client performing the mutation. | ||
347 | """ | ||
348 | clientMutationId: String | ||
349 | |||
350 | """ | ||
351 | The name of the column. | ||
352 | """ | ||
353 | name: String! | ||
354 | |||
355 | """ | ||
356 | The Node ID of the project. | ||
357 | """ | ||
358 | projectId: ID! @possibleTypes(concreteTypes: ["Project"]) | ||
359 | } | ||
360 | |||
361 | """ | ||
362 | Autogenerated return type of AddProjectColumn | ||
363 | """ | ||
364 | type AddProjectColumnPayload { | ||
365 | """ | ||
366 | A unique identifier for the client performing the mutation. | ||
367 | """ | ||
368 | clientMutationId: String | ||
369 | |||
370 | """ | ||
371 | The edge from the project's column connection. | ||
372 | """ | ||
373 | columnEdge: ProjectColumnEdge | ||
374 | |||
375 | """ | ||
376 | The project | ||
377 | """ | ||
378 | project: Project | ||
379 | } | ||
380 | |||
381 | """ | ||
382 | Autogenerated input type of AddPullRequestReviewComment | ||
383 | """ | ||
384 | input AddPullRequestReviewCommentInput { | ||
385 | """ | ||
386 | The text of the comment. | ||
387 | """ | ||
388 | body: String! | ||
389 | |||
390 | """ | ||
391 | A unique identifier for the client performing the mutation. | ||
392 | """ | ||
393 | clientMutationId: String | ||
394 | |||
395 | """ | ||
396 | The SHA of the commit to comment on. | ||
397 | """ | ||
398 | commitOID: GitObjectID | ||
399 | |||
400 | """ | ||
401 | The comment id to reply to. | ||
402 | """ | ||
403 | inReplyTo: ID @possibleTypes(concreteTypes: ["PullRequestReviewComment"]) | ||
404 | |||
405 | """ | ||
406 | The relative path of the file to comment on. | ||
407 | """ | ||
408 | path: String | ||
409 | |||
410 | """ | ||
411 | The line index in the diff to comment on. | ||
412 | """ | ||
413 | position: Int | ||
414 | |||
415 | """ | ||
416 | The node ID of the pull request reviewing | ||
417 | """ | ||
418 | pullRequestId: ID @possibleTypes(concreteTypes: ["PullRequest"]) | ||
419 | |||
420 | """ | ||
421 | The Node ID of the review to modify. | ||
422 | """ | ||
423 | pullRequestReviewId: ID @possibleTypes(concreteTypes: ["PullRequestReview"]) | ||
424 | } | ||
425 | |||
426 | """ | ||
427 | Autogenerated return type of AddPullRequestReviewComment | ||
428 | """ | ||
429 | type AddPullRequestReviewCommentPayload { | ||
430 | """ | ||
431 | A unique identifier for the client performing the mutation. | ||
432 | """ | ||
433 | clientMutationId: String | ||
434 | |||
435 | """ | ||
436 | The newly created comment. | ||
437 | """ | ||
438 | comment: PullRequestReviewComment | ||
439 | |||
440 | """ | ||
441 | The edge from the review's comment connection. | ||
442 | """ | ||
443 | commentEdge: PullRequestReviewCommentEdge | ||
444 | } | ||
445 | |||
446 | """ | ||
447 | Autogenerated input type of AddPullRequestReview | ||
448 | """ | ||
449 | input AddPullRequestReviewInput { | ||
450 | """ | ||
451 | The contents of the review body comment. | ||
452 | """ | ||
453 | body: String | ||
454 | |||
455 | """ | ||
456 | A unique identifier for the client performing the mutation. | ||
457 | """ | ||
458 | clientMutationId: String | ||
459 | |||
460 | """ | ||
461 | The review line comments. | ||
462 | """ | ||
463 | comments: [DraftPullRequestReviewComment] | ||
464 | |||
465 | """ | ||
466 | The commit OID the review pertains to. | ||
467 | """ | ||
468 | commitOID: GitObjectID | ||
469 | |||
470 | """ | ||
471 | The event to perform on the pull request review. | ||
472 | """ | ||
473 | event: PullRequestReviewEvent | ||
474 | |||
475 | """ | ||
476 | The Node ID of the pull request to modify. | ||
477 | """ | ||
478 | pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"]) | ||
479 | |||
480 | """ | ||
481 | The review line comment threads. | ||
482 | """ | ||
483 | threads: [DraftPullRequestReviewThread] | ||
484 | } | ||
485 | |||
486 | """ | ||
487 | Autogenerated return type of AddPullRequestReview | ||
488 | """ | ||
489 | type AddPullRequestReviewPayload { | ||
490 | """ | ||
491 | A unique identifier for the client performing the mutation. | ||
492 | """ | ||
493 | clientMutationId: String | ||
494 | |||
495 | """ | ||
496 | The newly created pull request review. | ||
497 | """ | ||
498 | pullRequestReview: PullRequestReview | ||
499 | |||
500 | """ | ||
501 | The edge from the pull request's review connection. | ||
502 | """ | ||
503 | reviewEdge: PullRequestReviewEdge | ||
504 | } | ||
505 | |||
506 | """ | ||
507 | Autogenerated input type of AddPullRequestReviewThread | ||
508 | """ | ||
509 | input AddPullRequestReviewThreadInput { | ||
510 | """ | ||
511 | Body of the thread's first comment. | ||
512 | """ | ||
513 | body: String! | ||
514 | |||
515 | """ | ||
516 | A unique identifier for the client performing the mutation. | ||
517 | """ | ||
518 | clientMutationId: String | ||
519 | |||
520 | """ | ||
521 | The line of the blob to which the thread refers. The end of the line range for multi-line comments. | ||
522 | """ | ||
523 | line: Int! | ||
524 | |||
525 | """ | ||
526 | Path to the file being commented on. | ||
527 | """ | ||
528 | path: String! | ||
529 | |||
530 | """ | ||
531 | The Node ID of the review to modify. | ||
532 | """ | ||
533 | pullRequestReviewId: ID! @possibleTypes(concreteTypes: ["PullRequestReview"]) | ||
534 | |||
535 | """ | ||
536 | The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range. | ||
537 | """ | ||
538 | side: DiffSide = RIGHT | ||
539 | |||
540 | """ | ||
541 | The first line of the range to which the comment refers. | ||
542 | """ | ||
543 | startLine: Int | ||
544 | |||
545 | """ | ||
546 | The side of the diff on which the start line resides. | ||
547 | """ | ||
548 | startSide: DiffSide = RIGHT | ||
549 | } | ||
550 | |||
551 | """ | ||
552 | Autogenerated return type of AddPullRequestReviewThread | ||
553 | """ | ||
554 | type AddPullRequestReviewThreadPayload { | ||
555 | """ | ||
556 | A unique identifier for the client performing the mutation. | ||
557 | """ | ||
558 | clientMutationId: String | ||
559 | |||
560 | """ | ||
561 | The newly created thread. | ||
562 | """ | ||
563 | thread: PullRequestReviewThread | ||
564 | } | ||
565 | |||
566 | """ | ||
567 | Autogenerated input type of AddReaction | ||
568 | """ | ||
569 | input AddReactionInput { | ||
570 | """ | ||
571 | A unique identifier for the client performing the mutation. | ||
572 | """ | ||
573 | clientMutationId: String | ||
574 | |||
575 | """ | ||
576 | The name of the emoji to react with. | ||
577 | """ | ||
578 | content: ReactionContent! | ||
579 | |||
580 | """ | ||
581 | The Node ID of the subject to modify. | ||
582 | """ | ||
583 | subjectId: ID! @possibleTypes(concreteTypes: ["CommitComment", "Issue", "IssueComment", "PullRequest", "PullRequestReview", "PullRequestReviewComment", "TeamDiscussion", "TeamDiscussionComment"], abstractType: "Reactable") | ||
584 | } | ||
585 | |||
586 | """ | ||
587 | Autogenerated return type of AddReaction | ||
588 | """ | ||
589 | type AddReactionPayload { | ||
590 | """ | ||
591 | A unique identifier for the client performing the mutation. | ||
592 | """ | ||
593 | clientMutationId: String | ||
594 | |||
595 | """ | ||
596 | The reaction object. | ||
597 | """ | ||
598 | reaction: Reaction | ||
599 | |||
600 | """ | ||
601 | The reactable subject. | ||
602 | """ | ||
603 | subject: Reactable | ||
604 | } | ||
605 | |||
606 | """ | ||
607 | Autogenerated input type of AddStar | ||
608 | """ | ||
609 | input AddStarInput { | ||
610 | """ | ||
611 | A unique identifier for the client performing the mutation. | ||
612 | """ | ||
613 | clientMutationId: String | ||
614 | |||
615 | """ | ||
616 | The Starrable ID to star. | ||
617 | """ | ||
618 | starrableId: ID! @possibleTypes(concreteTypes: ["Gist", "Repository", "Topic"], abstractType: "Starrable") | ||
619 | } | ||
620 | |||
621 | """ | ||
622 | Autogenerated return type of AddStar | ||
623 | """ | ||
624 | type AddStarPayload { | ||
625 | """ | ||
626 | A unique identifier for the client performing the mutation. | ||
627 | """ | ||
628 | clientMutationId: String | ||
629 | |||
630 | """ | ||
631 | The starrable. | ||
632 | """ | ||
633 | starrable: Starrable | ||
634 | } | ||
635 | |||
636 | """ | ||
637 | Represents a 'added_to_project' event on a given issue or pull request. | ||
638 | """ | ||
639 | type AddedToProjectEvent implements Node { | ||
640 | """ | ||
641 | Identifies the actor who performed the event. | ||
642 | """ | ||
643 | actor: Actor | ||
644 | |||
645 | """ | ||
646 | Identifies the date and time when the object was created. | ||
647 | """ | ||
648 | createdAt: DateTime! | ||
649 | |||
650 | """ | ||
651 | Identifies the primary key from the database. | ||
652 | """ | ||
653 | databaseId: Int | ||
654 | id: ID! | ||
655 | |||
656 | """ | ||
657 | Project referenced by event. | ||
658 | """ | ||
659 | project: Project @preview(toggledBy: "starfox-preview") | ||
660 | |||
661 | """ | ||
662 | Project card referenced by this project event. | ||
663 | """ | ||
664 | projectCard: ProjectCard @preview(toggledBy: "starfox-preview") | ||
665 | |||
666 | """ | ||
667 | Column name referenced by this project event. | ||
668 | """ | ||
669 | projectColumnName: String! @preview(toggledBy: "starfox-preview") | ||
670 | } | ||
671 | |||
672 | """ | ||
673 | A GitHub App. | ||
674 | """ | ||
675 | type App implements Node { | ||
676 | """ | ||
677 | Identifies the date and time when the object was created. | ||
678 | """ | ||
679 | createdAt: DateTime! | ||
680 | |||
681 | """ | ||
682 | Identifies the primary key from the database. | ||
683 | """ | ||
684 | databaseId: Int | ||
685 | |||
686 | """ | ||
687 | The description of the app. | ||
688 | """ | ||
689 | description: String | ||
690 | id: ID! | ||
691 | |||
692 | """ | ||
693 | The hex color code, without the leading '#', for the logo background. | ||
694 | """ | ||
695 | logoBackgroundColor: String! | ||
696 | |||
697 | """ | ||
698 | A URL pointing to the app's logo. | ||
699 | """ | ||
700 | logoUrl( | ||
701 | """ | ||
702 | The size of the resulting image. | ||
703 | """ | ||
704 | size: Int | ||
705 | ): URI! | ||
706 | |||
707 | """ | ||
708 | The name of the app. | ||
709 | """ | ||
710 | name: String! | ||
711 | |||
712 | """ | ||
713 | A slug based on the name of the app for use in URLs. | ||
714 | """ | ||
715 | slug: String! | ||
716 | |||
717 | """ | ||
718 | Identifies the date and time when the object was last updated. | ||
719 | """ | ||
720 | updatedAt: DateTime! | ||
721 | |||
722 | """ | ||
723 | The URL to the app's homepage. | ||
724 | """ | ||
725 | url: URI! | ||
726 | } | ||
727 | |||
728 | """ | ||
729 | Autogenerated input type of ArchiveRepository | ||
730 | """ | ||
731 | input ArchiveRepositoryInput { | ||
732 | """ | ||
733 | A unique identifier for the client performing the mutation. | ||
734 | """ | ||
735 | clientMutationId: String | ||
736 | |||
737 | """ | ||
738 | The ID of the repository to mark as archived. | ||
739 | """ | ||
740 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
741 | } | ||
742 | |||
743 | """ | ||
744 | Autogenerated return type of ArchiveRepository | ||
745 | """ | ||
746 | type ArchiveRepositoryPayload { | ||
747 | """ | ||
748 | A unique identifier for the client performing the mutation. | ||
749 | """ | ||
750 | clientMutationId: String | ||
751 | |||
752 | """ | ||
753 | The repository that was marked as archived. | ||
754 | """ | ||
755 | repository: Repository | ||
756 | } | ||
757 | |||
758 | """ | ||
759 | An object that can have users assigned to it. | ||
760 | """ | ||
761 | interface Assignable { | ||
762 | """ | ||
763 | A list of Users assigned to this object. | ||
764 | """ | ||
765 | assignees( | ||
766 | """ | ||
767 | Returns the elements in the list that come after the specified cursor. | ||
768 | """ | ||
769 | after: String | ||
770 | |||
771 | """ | ||
772 | Returns the elements in the list that come before the specified cursor. | ||
773 | """ | ||
774 | before: String | ||
775 | |||
776 | """ | ||
777 | Returns the first _n_ elements from the list. | ||
778 | """ | ||
779 | first: Int | ||
780 | |||
781 | """ | ||
782 | Returns the last _n_ elements from the list. | ||
783 | """ | ||
784 | last: Int | ||
785 | ): UserConnection! | ||
786 | } | ||
787 | |||
788 | """ | ||
789 | Represents an 'assigned' event on any assignable object. | ||
790 | """ | ||
791 | type AssignedEvent implements Node { | ||
792 | """ | ||
793 | Identifies the actor who performed the event. | ||
794 | """ | ||
795 | actor: Actor | ||
796 | |||
797 | """ | ||
798 | Identifies the assignable associated with the event. | ||
799 | """ | ||
800 | assignable: Assignable! | ||
801 | |||
802 | """ | ||
803 | Identifies the user or mannequin that was assigned. | ||
804 | """ | ||
805 | assignee: Assignee | ||
806 | |||
807 | """ | ||
808 | Identifies the date and time when the object was created. | ||
809 | """ | ||
810 | createdAt: DateTime! | ||
811 | id: ID! | ||
812 | |||
813 | """ | ||
814 | Identifies the user who was assigned. | ||
815 | """ | ||
816 | user: User @deprecated(reason: "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.") | ||
817 | } | ||
818 | |||
819 | """ | ||
820 | Types that can be assigned to issues. | ||
821 | """ | ||
822 | union Assignee = Bot | Mannequin | Organization | User | ||
823 | |||
824 | """ | ||
825 | An entry in the audit log. | ||
826 | """ | ||
827 | interface AuditEntry { | ||
828 | """ | ||
829 | The action name | ||
830 | """ | ||
831 | action: String! | ||
832 | |||
833 | """ | ||
834 | The user who initiated the action | ||
835 | """ | ||
836 | actor: AuditEntryActor | ||
837 | |||
838 | """ | ||
839 | The IP address of the actor | ||
840 | """ | ||
841 | actorIp: String | ||
842 | |||
843 | """ | ||
844 | A readable representation of the actor's location | ||
845 | """ | ||
846 | actorLocation: ActorLocation | ||
847 | |||
848 | """ | ||
849 | The username of the user who initiated the action | ||
850 | """ | ||
851 | actorLogin: String | ||
852 | |||
853 | """ | ||
854 | The HTTP path for the actor. | ||
855 | """ | ||
856 | actorResourcePath: URI | ||
857 | |||
858 | """ | ||
859 | The HTTP URL for the actor. | ||
860 | """ | ||
861 | actorUrl: URI | ||
862 | |||
863 | """ | ||
864 | The time the action was initiated | ||
865 | """ | ||
866 | createdAt: PreciseDateTime! | ||
867 | |||
868 | """ | ||
869 | The corresponding operation type for the action | ||
870 | """ | ||
871 | operationType: OperationType | ||
872 | |||
873 | """ | ||
874 | The user affected by the action | ||
875 | """ | ||
876 | user: User | ||
877 | |||
878 | """ | ||
879 | For actions involving two users, the actor is the initiator and the user is the affected user. | ||
880 | """ | ||
881 | userLogin: String | ||
882 | |||
883 | """ | ||
884 | The HTTP path for the user. | ||
885 | """ | ||
886 | userResourcePath: URI | ||
887 | |||
888 | """ | ||
889 | The HTTP URL for the user. | ||
890 | """ | ||
891 | userUrl: URI | ||
892 | } | ||
893 | |||
894 | """ | ||
895 | Types that can initiate an audit log event. | ||
896 | """ | ||
897 | union AuditEntryActor = Bot | Organization | User | ||
898 | |||
899 | """ | ||
900 | Ordering options for Audit Log connections. | ||
901 | """ | ||
902 | input AuditLogOrder { | ||
903 | """ | ||
904 | The ordering direction. | ||
905 | """ | ||
906 | direction: OrderDirection | ||
907 | |||
908 | """ | ||
909 | The field to order Audit Logs by. | ||
910 | """ | ||
911 | field: AuditLogOrderField | ||
912 | } | ||
913 | |||
914 | """ | ||
915 | Properties by which Audit Log connections can be ordered. | ||
916 | """ | ||
917 | enum AuditLogOrderField { | ||
918 | """ | ||
919 | Order audit log entries by timestamp | ||
920 | """ | ||
921 | CREATED_AT | ||
922 | } | ||
923 | |||
924 | """ | ||
925 | Represents a 'automatic_base_change_failed' event on a given pull request. | ||
926 | """ | ||
927 | type AutomaticBaseChangeFailedEvent implements Node { | ||
928 | """ | ||
929 | Identifies the actor who performed the event. | ||
930 | """ | ||
931 | actor: Actor | ||
932 | |||
933 | """ | ||
934 | Identifies the date and time when the object was created. | ||
935 | """ | ||
936 | createdAt: DateTime! | ||
937 | id: ID! | ||
938 | |||
939 | """ | ||
940 | The new base for this PR | ||
941 | """ | ||
942 | newBase: String! | ||
943 | |||
944 | """ | ||
945 | The old base for this PR | ||
946 | """ | ||
947 | oldBase: String! | ||
948 | |||
949 | """ | ||
950 | PullRequest referenced by event. | ||
951 | """ | ||
952 | pullRequest: PullRequest! | ||
953 | } | ||
954 | |||
955 | """ | ||
956 | Represents a 'automatic_base_change_succeeded' event on a given pull request. | ||
957 | """ | ||
958 | type AutomaticBaseChangeSucceededEvent implements Node { | ||
959 | """ | ||
960 | Identifies the actor who performed the event. | ||
961 | """ | ||
962 | actor: Actor | ||
963 | |||
964 | """ | ||
965 | Identifies the date and time when the object was created. | ||
966 | """ | ||
967 | createdAt: DateTime! | ||
968 | id: ID! | ||
969 | |||
970 | """ | ||
971 | The new base for this PR | ||
972 | """ | ||
973 | newBase: String! | ||
974 | |||
975 | """ | ||
976 | The old base for this PR | ||
977 | """ | ||
978 | oldBase: String! | ||
979 | |||
980 | """ | ||
981 | PullRequest referenced by event. | ||
982 | """ | ||
983 | pullRequest: PullRequest! | ||
984 | } | ||
985 | |||
986 | """ | ||
987 | Represents a 'base_ref_changed' event on a given issue or pull request. | ||
988 | """ | ||
989 | type BaseRefChangedEvent implements Node { | ||
990 | """ | ||
991 | Identifies the actor who performed the event. | ||
992 | """ | ||
993 | actor: Actor | ||
994 | |||
995 | """ | ||
996 | Identifies the date and time when the object was created. | ||
997 | """ | ||
998 | createdAt: DateTime! | ||
999 | |||
1000 | """ | ||
1001 | Identifies the primary key from the database. | ||
1002 | """ | ||
1003 | databaseId: Int | ||
1004 | id: ID! | ||
1005 | } | ||
1006 | |||
1007 | """ | ||
1008 | Represents a 'base_ref_force_pushed' event on a given pull request. | ||
1009 | """ | ||
1010 | type BaseRefForcePushedEvent implements Node { | ||
1011 | """ | ||
1012 | Identifies the actor who performed the event. | ||
1013 | """ | ||
1014 | actor: Actor | ||
1015 | |||
1016 | """ | ||
1017 | Identifies the after commit SHA for the 'base_ref_force_pushed' event. | ||
1018 | """ | ||
1019 | afterCommit: Commit | ||
1020 | |||
1021 | """ | ||
1022 | Identifies the before commit SHA for the 'base_ref_force_pushed' event. | ||
1023 | """ | ||
1024 | beforeCommit: Commit | ||
1025 | |||
1026 | """ | ||
1027 | Identifies the date and time when the object was created. | ||
1028 | """ | ||
1029 | createdAt: DateTime! | ||
1030 | id: ID! | ||
1031 | |||
1032 | """ | ||
1033 | PullRequest referenced by event. | ||
1034 | """ | ||
1035 | pullRequest: PullRequest! | ||
1036 | |||
1037 | """ | ||
1038 | Identifies the fully qualified ref name for the 'base_ref_force_pushed' event. | ||
1039 | """ | ||
1040 | ref: Ref | ||
1041 | } | ||
1042 | |||
1043 | """ | ||
1044 | Represents a Git blame. | ||
1045 | """ | ||
1046 | type Blame { | ||
1047 | """ | ||
1048 | The list of ranges from a Git blame. | ||
1049 | """ | ||
1050 | ranges: [BlameRange!]! | ||
1051 | } | ||
1052 | |||
1053 | """ | ||
1054 | Represents a range of information from a Git blame. | ||
1055 | """ | ||
1056 | type BlameRange { | ||
1057 | """ | ||
1058 | Identifies the recency of the change, from 1 (new) to 10 (old). This is | ||
1059 | calculated as a 2-quantile and determines the length of distance between the | ||
1060 | median age of all the changes in the file and the recency of the current | ||
1061 | range's change. | ||
1062 | """ | ||
1063 | age: Int! | ||
1064 | |||
1065 | """ | ||
1066 | Identifies the line author | ||
1067 | """ | ||
1068 | commit: Commit! | ||
1069 | |||
1070 | """ | ||
1071 | The ending line for the range | ||
1072 | """ | ||
1073 | endingLine: Int! | ||
1074 | |||
1075 | """ | ||
1076 | The starting line for the range | ||
1077 | """ | ||
1078 | startingLine: Int! | ||
1079 | } | ||
1080 | |||
1081 | """ | ||
1082 | Represents a Git blob. | ||
1083 | """ | ||
1084 | type Blob implements GitObject & Node { | ||
1085 | """ | ||
1086 | An abbreviated version of the Git object ID | ||
1087 | """ | ||
1088 | abbreviatedOid: String! | ||
1089 | |||
1090 | """ | ||
1091 | Byte size of Blob object | ||
1092 | """ | ||
1093 | byteSize: Int! | ||
1094 | |||
1095 | """ | ||
1096 | The HTTP path for this Git object | ||
1097 | """ | ||
1098 | commitResourcePath: URI! | ||
1099 | |||
1100 | """ | ||
1101 | The HTTP URL for this Git object | ||
1102 | """ | ||
1103 | commitUrl: URI! | ||
1104 | id: ID! | ||
1105 | |||
1106 | """ | ||
1107 | Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding. | ||
1108 | """ | ||
1109 | isBinary: Boolean | ||
1110 | |||
1111 | """ | ||
1112 | Indicates whether the contents is truncated | ||
1113 | """ | ||
1114 | isTruncated: Boolean! | ||
1115 | |||
1116 | """ | ||
1117 | The Git object ID | ||
1118 | """ | ||
1119 | oid: GitObjectID! | ||
1120 | |||
1121 | """ | ||
1122 | The Repository the Git object belongs to | ||
1123 | """ | ||
1124 | repository: Repository! | ||
1125 | |||
1126 | """ | ||
1127 | UTF8 text data or null if the Blob is binary | ||
1128 | """ | ||
1129 | text: String | ||
1130 | } | ||
1131 | |||
1132 | """ | ||
1133 | A special type of user which takes actions on behalf of GitHub Apps. | ||
1134 | """ | ||
1135 | type Bot implements Actor & Node & UniformResourceLocatable { | ||
1136 | """ | ||
1137 | A URL pointing to the GitHub App's public avatar. | ||
1138 | """ | ||
1139 | avatarUrl( | ||
1140 | """ | ||
1141 | The size of the resulting square image. | ||
1142 | """ | ||
1143 | size: Int | ||
1144 | ): URI! | ||
1145 | |||
1146 | """ | ||
1147 | Identifies the date and time when the object was created. | ||
1148 | """ | ||
1149 | createdAt: DateTime! | ||
1150 | |||
1151 | """ | ||
1152 | Identifies the primary key from the database. | ||
1153 | """ | ||
1154 | databaseId: Int | ||
1155 | id: ID! | ||
1156 | |||
1157 | """ | ||
1158 | The username of the actor. | ||
1159 | """ | ||
1160 | login: String! | ||
1161 | |||
1162 | """ | ||
1163 | The HTTP path for this bot | ||
1164 | """ | ||
1165 | resourcePath: URI! | ||
1166 | |||
1167 | """ | ||
1168 | Identifies the date and time when the object was last updated. | ||
1169 | """ | ||
1170 | updatedAt: DateTime! | ||
1171 | |||
1172 | """ | ||
1173 | The HTTP URL for this bot | ||
1174 | """ | ||
1175 | url: URI! | ||
1176 | } | ||
1177 | |||
1178 | """ | ||
1179 | A branch protection rule. | ||
1180 | """ | ||
1181 | type BranchProtectionRule implements Node { | ||
1182 | """ | ||
1183 | A list of conflicts matching branches protection rule and other branch protection rules | ||
1184 | """ | ||
1185 | branchProtectionRuleConflicts( | ||
1186 | """ | ||
1187 | Returns the elements in the list that come after the specified cursor. | ||
1188 | """ | ||
1189 | after: String | ||
1190 | |||
1191 | """ | ||
1192 | Returns the elements in the list that come before the specified cursor. | ||
1193 | """ | ||
1194 | before: String | ||
1195 | |||
1196 | """ | ||
1197 | Returns the first _n_ elements from the list. | ||
1198 | """ | ||
1199 | first: Int | ||
1200 | |||
1201 | """ | ||
1202 | Returns the last _n_ elements from the list. | ||
1203 | """ | ||
1204 | last: Int | ||
1205 | ): BranchProtectionRuleConflictConnection! | ||
1206 | |||
1207 | """ | ||
1208 | The actor who created this branch protection rule. | ||
1209 | """ | ||
1210 | creator: Actor | ||
1211 | |||
1212 | """ | ||
1213 | Identifies the primary key from the database. | ||
1214 | """ | ||
1215 | databaseId: Int | ||
1216 | |||
1217 | """ | ||
1218 | Will new commits pushed to matching branches dismiss pull request review approvals. | ||
1219 | """ | ||
1220 | dismissesStaleReviews: Boolean! | ||
1221 | id: ID! | ||
1222 | |||
1223 | """ | ||
1224 | Can admins overwrite branch protection. | ||
1225 | """ | ||
1226 | isAdminEnforced: Boolean! | ||
1227 | |||
1228 | """ | ||
1229 | Repository refs that are protected by this rule | ||
1230 | """ | ||
1231 | matchingRefs( | ||
1232 | """ | ||
1233 | Returns the elements in the list that come after the specified cursor. | ||
1234 | """ | ||
1235 | after: String | ||
1236 | |||
1237 | """ | ||
1238 | Returns the elements in the list that come before the specified cursor. | ||
1239 | """ | ||
1240 | before: String | ||
1241 | |||
1242 | """ | ||
1243 | Returns the first _n_ elements from the list. | ||
1244 | """ | ||
1245 | first: Int | ||
1246 | |||
1247 | """ | ||
1248 | Returns the last _n_ elements from the list. | ||
1249 | """ | ||
1250 | last: Int | ||
1251 | |||
1252 | """ | ||
1253 | Filters refs with query on name | ||
1254 | """ | ||
1255 | query: String | ||
1256 | ): RefConnection! | ||
1257 | |||
1258 | """ | ||
1259 | Identifies the protection rule pattern. | ||
1260 | """ | ||
1261 | pattern: String! | ||
1262 | |||
1263 | """ | ||
1264 | A list push allowances for this branch protection rule. | ||
1265 | """ | ||
1266 | pushAllowances( | ||
1267 | """ | ||
1268 | Returns the elements in the list that come after the specified cursor. | ||
1269 | """ | ||
1270 | after: String | ||
1271 | |||
1272 | """ | ||
1273 | Returns the elements in the list that come before the specified cursor. | ||
1274 | """ | ||
1275 | before: String | ||
1276 | |||
1277 | """ | ||
1278 | Returns the first _n_ elements from the list. | ||
1279 | """ | ||
1280 | first: Int | ||
1281 | |||
1282 | """ | ||
1283 | Returns the last _n_ elements from the list. | ||
1284 | """ | ||
1285 | last: Int | ||
1286 | ): PushAllowanceConnection! | ||
1287 | |||
1288 | """ | ||
1289 | The repository associated with this branch protection rule. | ||
1290 | """ | ||
1291 | repository: Repository | ||
1292 | |||
1293 | """ | ||
1294 | Number of approving reviews required to update matching branches. | ||
1295 | """ | ||
1296 | requiredApprovingReviewCount: Int | ||
1297 | |||
1298 | """ | ||
1299 | List of required status check contexts that must pass for commits to be accepted to matching branches. | ||
1300 | """ | ||
1301 | requiredStatusCheckContexts: [String] | ||
1302 | |||
1303 | """ | ||
1304 | Are approving reviews required to update matching branches. | ||
1305 | """ | ||
1306 | requiresApprovingReviews: Boolean! | ||
1307 | |||
1308 | """ | ||
1309 | Are reviews from code owners required to update matching branches. | ||
1310 | """ | ||
1311 | requiresCodeOwnerReviews: Boolean! | ||
1312 | |||
1313 | """ | ||
1314 | Are commits required to be signed. | ||
1315 | """ | ||
1316 | requiresCommitSignatures: Boolean! | ||
1317 | |||
1318 | """ | ||
1319 | Are status checks required to update matching branches. | ||
1320 | """ | ||
1321 | requiresStatusChecks: Boolean! | ||
1322 | |||
1323 | """ | ||
1324 | Are branches required to be up to date before merging. | ||
1325 | """ | ||
1326 | requiresStrictStatusChecks: Boolean! | ||
1327 | |||
1328 | """ | ||
1329 | Is pushing to matching branches restricted. | ||
1330 | """ | ||
1331 | restrictsPushes: Boolean! | ||
1332 | |||
1333 | """ | ||
1334 | Is dismissal of pull request reviews restricted. | ||
1335 | """ | ||
1336 | restrictsReviewDismissals: Boolean! | ||
1337 | |||
1338 | """ | ||
1339 | A list review dismissal allowances for this branch protection rule. | ||
1340 | """ | ||
1341 | reviewDismissalAllowances( | ||
1342 | """ | ||
1343 | Returns the elements in the list that come after the specified cursor. | ||
1344 | """ | ||
1345 | after: String | ||
1346 | |||
1347 | """ | ||
1348 | Returns the elements in the list that come before the specified cursor. | ||
1349 | """ | ||
1350 | before: String | ||
1351 | |||
1352 | """ | ||
1353 | Returns the first _n_ elements from the list. | ||
1354 | """ | ||
1355 | first: Int | ||
1356 | |||
1357 | """ | ||
1358 | Returns the last _n_ elements from the list. | ||
1359 | """ | ||
1360 | last: Int | ||
1361 | ): ReviewDismissalAllowanceConnection! | ||
1362 | } | ||
1363 | |||
1364 | """ | ||
1365 | A conflict between two branch protection rules. | ||
1366 | """ | ||
1367 | type BranchProtectionRuleConflict { | ||
1368 | """ | ||
1369 | Identifies the branch protection rule. | ||
1370 | """ | ||
1371 | branchProtectionRule: BranchProtectionRule | ||
1372 | |||
1373 | """ | ||
1374 | Identifies the conflicting branch protection rule. | ||
1375 | """ | ||
1376 | conflictingBranchProtectionRule: BranchProtectionRule | ||
1377 | |||
1378 | """ | ||
1379 | Identifies the branch ref that has conflicting rules | ||
1380 | """ | ||
1381 | ref: Ref | ||
1382 | } | ||
1383 | |||
1384 | """ | ||
1385 | The connection type for BranchProtectionRuleConflict. | ||
1386 | """ | ||
1387 | type BranchProtectionRuleConflictConnection { | ||
1388 | """ | ||
1389 | A list of edges. | ||
1390 | """ | ||
1391 | edges: [BranchProtectionRuleConflictEdge] | ||
1392 | |||
1393 | """ | ||
1394 | A list of nodes. | ||
1395 | """ | ||
1396 | nodes: [BranchProtectionRuleConflict] | ||
1397 | |||
1398 | """ | ||
1399 | Information to aid in pagination. | ||
1400 | """ | ||
1401 | pageInfo: PageInfo! | ||
1402 | |||
1403 | """ | ||
1404 | Identifies the total count of items in the connection. | ||
1405 | """ | ||
1406 | totalCount: Int! | ||
1407 | } | ||
1408 | |||
1409 | """ | ||
1410 | An edge in a connection. | ||
1411 | """ | ||
1412 | type BranchProtectionRuleConflictEdge { | ||
1413 | """ | ||
1414 | A cursor for use in pagination. | ||
1415 | """ | ||
1416 | cursor: String! | ||
1417 | |||
1418 | """ | ||
1419 | The item at the end of the edge. | ||
1420 | """ | ||
1421 | node: BranchProtectionRuleConflict | ||
1422 | } | ||
1423 | |||
1424 | """ | ||
1425 | The connection type for BranchProtectionRule. | ||
1426 | """ | ||
1427 | type BranchProtectionRuleConnection { | ||
1428 | """ | ||
1429 | A list of edges. | ||
1430 | """ | ||
1431 | edges: [BranchProtectionRuleEdge] | ||
1432 | |||
1433 | """ | ||
1434 | A list of nodes. | ||
1435 | """ | ||
1436 | nodes: [BranchProtectionRule] | ||
1437 | |||
1438 | """ | ||
1439 | Information to aid in pagination. | ||
1440 | """ | ||
1441 | pageInfo: PageInfo! | ||
1442 | |||
1443 | """ | ||
1444 | Identifies the total count of items in the connection. | ||
1445 | """ | ||
1446 | totalCount: Int! | ||
1447 | } | ||
1448 | |||
1449 | """ | ||
1450 | An edge in a connection. | ||
1451 | """ | ||
1452 | type BranchProtectionRuleEdge { | ||
1453 | """ | ||
1454 | A cursor for use in pagination. | ||
1455 | """ | ||
1456 | cursor: String! | ||
1457 | |||
1458 | """ | ||
1459 | The item at the end of the edge. | ||
1460 | """ | ||
1461 | node: BranchProtectionRule | ||
1462 | } | ||
1463 | |||
1464 | """ | ||
1465 | Autogenerated input type of CancelEnterpriseAdminInvitation | ||
1466 | """ | ||
1467 | input CancelEnterpriseAdminInvitationInput { | ||
1468 | """ | ||
1469 | A unique identifier for the client performing the mutation. | ||
1470 | """ | ||
1471 | clientMutationId: String | ||
1472 | |||
1473 | """ | ||
1474 | The Node ID of the pending enterprise administrator invitation. | ||
1475 | """ | ||
1476 | invitationId: ID! @possibleTypes(concreteTypes: ["EnterpriseAdministratorInvitation"]) | ||
1477 | } | ||
1478 | |||
1479 | """ | ||
1480 | Autogenerated return type of CancelEnterpriseAdminInvitation | ||
1481 | """ | ||
1482 | type CancelEnterpriseAdminInvitationPayload { | ||
1483 | """ | ||
1484 | A unique identifier for the client performing the mutation. | ||
1485 | """ | ||
1486 | clientMutationId: String | ||
1487 | |||
1488 | """ | ||
1489 | The invitation that was canceled. | ||
1490 | """ | ||
1491 | invitation: EnterpriseAdministratorInvitation | ||
1492 | |||
1493 | """ | ||
1494 | A message confirming the result of canceling an administrator invitation. | ||
1495 | """ | ||
1496 | message: String | ||
1497 | } | ||
1498 | |||
1499 | """ | ||
1500 | Autogenerated input type of ChangeUserStatus | ||
1501 | """ | ||
1502 | input ChangeUserStatusInput { | ||
1503 | """ | ||
1504 | A unique identifier for the client performing the mutation. | ||
1505 | """ | ||
1506 | clientMutationId: String | ||
1507 | |||
1508 | """ | ||
1509 | The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., :grinning:. | ||
1510 | """ | ||
1511 | emoji: String | ||
1512 | |||
1513 | """ | ||
1514 | If set, the user status will not be shown after this date. | ||
1515 | """ | ||
1516 | expiresAt: DateTime | ||
1517 | |||
1518 | """ | ||
1519 | Whether this status should indicate you are not fully available on GitHub, e.g., you are away. | ||
1520 | """ | ||
1521 | limitedAvailability: Boolean = false | ||
1522 | |||
1523 | """ | ||
1524 | A short description of your current status. | ||
1525 | """ | ||
1526 | message: String | ||
1527 | |||
1528 | """ | ||
1529 | The ID of the organization whose members will be allowed to see the status. If | ||
1530 | omitted, the status will be publicly visible. | ||
1531 | """ | ||
1532 | organizationId: ID @possibleTypes(concreteTypes: ["Organization"]) | ||
1533 | } | ||
1534 | |||
1535 | """ | ||
1536 | Autogenerated return type of ChangeUserStatus | ||
1537 | """ | ||
1538 | type ChangeUserStatusPayload { | ||
1539 | """ | ||
1540 | A unique identifier for the client performing the mutation. | ||
1541 | """ | ||
1542 | clientMutationId: String | ||
1543 | |||
1544 | """ | ||
1545 | Your updated status. | ||
1546 | """ | ||
1547 | status: UserStatus | ||
1548 | } | ||
1549 | |||
1550 | """ | ||
1551 | A single check annotation. | ||
1552 | """ | ||
1553 | type CheckAnnotation @preview(toggledBy: "antiope-preview") { | ||
1554 | """ | ||
1555 | The annotation's severity level. | ||
1556 | """ | ||
1557 | annotationLevel: CheckAnnotationLevel | ||
1558 | |||
1559 | """ | ||
1560 | The path to the file that this annotation was made on. | ||
1561 | """ | ||
1562 | blobUrl: URI! | ||
1563 | |||
1564 | """ | ||
1565 | Identifies the primary key from the database. | ||
1566 | """ | ||
1567 | databaseId: Int | ||
1568 | |||
1569 | """ | ||
1570 | The position of this annotation. | ||
1571 | """ | ||
1572 | location: CheckAnnotationSpan! | ||
1573 | |||
1574 | """ | ||
1575 | The annotation's message. | ||
1576 | """ | ||
1577 | message: String! | ||
1578 | |||
1579 | """ | ||
1580 | The path that this annotation was made on. | ||
1581 | """ | ||
1582 | path: String! | ||
1583 | |||
1584 | """ | ||
1585 | Additional information about the annotation. | ||
1586 | """ | ||
1587 | rawDetails: String | ||
1588 | |||
1589 | """ | ||
1590 | The annotation's title | ||
1591 | """ | ||
1592 | title: String | ||
1593 | } | ||
1594 | |||
1595 | """ | ||
1596 | The connection type for CheckAnnotation. | ||
1597 | """ | ||
1598 | type CheckAnnotationConnection { | ||
1599 | """ | ||
1600 | A list of edges. | ||
1601 | """ | ||
1602 | edges: [CheckAnnotationEdge] | ||
1603 | |||
1604 | """ | ||
1605 | A list of nodes. | ||
1606 | """ | ||
1607 | nodes: [CheckAnnotation] @preview(toggledBy: "antiope-preview") | ||
1608 | |||
1609 | """ | ||
1610 | Information to aid in pagination. | ||
1611 | """ | ||
1612 | pageInfo: PageInfo! | ||
1613 | |||
1614 | """ | ||
1615 | Identifies the total count of items in the connection. | ||
1616 | """ | ||
1617 | totalCount: Int! | ||
1618 | } | ||
1619 | |||
1620 | """ | ||
1621 | Information from a check run analysis to specific lines of code. | ||
1622 | """ | ||
1623 | input CheckAnnotationData @preview(toggledBy: "antiope-preview") { | ||
1624 | """ | ||
1625 | Represents an annotation's information level | ||
1626 | """ | ||
1627 | annotationLevel: CheckAnnotationLevel! | ||
1628 | |||
1629 | """ | ||
1630 | The location of the annotation | ||
1631 | """ | ||
1632 | location: CheckAnnotationRange! | ||
1633 | |||
1634 | """ | ||
1635 | A short description of the feedback for these lines of code. | ||
1636 | """ | ||
1637 | message: String! | ||
1638 | |||
1639 | """ | ||
1640 | The path of the file to add an annotation to. | ||
1641 | """ | ||
1642 | path: String! | ||
1643 | |||
1644 | """ | ||
1645 | Details about this annotation. | ||
1646 | """ | ||
1647 | rawDetails: String | ||
1648 | |||
1649 | """ | ||
1650 | The title that represents the annotation. | ||
1651 | """ | ||
1652 | title: String | ||
1653 | } | ||
1654 | |||
1655 | """ | ||
1656 | An edge in a connection. | ||
1657 | """ | ||
1658 | type CheckAnnotationEdge { | ||
1659 | """ | ||
1660 | A cursor for use in pagination. | ||
1661 | """ | ||
1662 | cursor: String! | ||
1663 | |||
1664 | """ | ||
1665 | The item at the end of the edge. | ||
1666 | """ | ||
1667 | node: CheckAnnotation @preview(toggledBy: "antiope-preview") | ||
1668 | } | ||
1669 | |||
1670 | """ | ||
1671 | Represents an annotation's information level. | ||
1672 | """ | ||
1673 | enum CheckAnnotationLevel @preview(toggledBy: "antiope-preview") { | ||
1674 | """ | ||
1675 | An annotation indicating an inescapable error. | ||
1676 | """ | ||
1677 | FAILURE | ||
1678 | |||
1679 | """ | ||
1680 | An annotation indicating some information. | ||
1681 | """ | ||
1682 | NOTICE | ||
1683 | |||
1684 | """ | ||
1685 | An annotation indicating an ignorable error. | ||
1686 | """ | ||
1687 | WARNING | ||
1688 | } | ||
1689 | |||
1690 | """ | ||
1691 | A character position in a check annotation. | ||
1692 | """ | ||
1693 | type CheckAnnotationPosition @preview(toggledBy: "antiope-preview") { | ||
1694 | """ | ||
1695 | Column number (1 indexed). | ||
1696 | """ | ||
1697 | column: Int | ||
1698 | |||
1699 | """ | ||
1700 | Line number (1 indexed). | ||
1701 | """ | ||
1702 | line: Int! | ||
1703 | } | ||
1704 | |||
1705 | """ | ||
1706 | Information from a check run analysis to specific lines of code. | ||
1707 | """ | ||
1708 | input CheckAnnotationRange @preview(toggledBy: "antiope-preview") { | ||
1709 | """ | ||
1710 | The ending column of the range. | ||
1711 | """ | ||
1712 | endColumn: Int | ||
1713 | |||
1714 | """ | ||
1715 | The ending line of the range. | ||
1716 | """ | ||
1717 | endLine: Int! | ||
1718 | |||
1719 | """ | ||
1720 | The starting column of the range. | ||
1721 | """ | ||
1722 | startColumn: Int | ||
1723 | |||
1724 | """ | ||
1725 | The starting line of the range. | ||
1726 | """ | ||
1727 | startLine: Int! | ||
1728 | } | ||
1729 | |||
1730 | """ | ||
1731 | An inclusive pair of positions for a check annotation. | ||
1732 | """ | ||
1733 | type CheckAnnotationSpan @preview(toggledBy: "antiope-preview") { | ||
1734 | """ | ||
1735 | End position (inclusive). | ||
1736 | """ | ||
1737 | end: CheckAnnotationPosition! | ||
1738 | |||
1739 | """ | ||
1740 | Start position (inclusive). | ||
1741 | """ | ||
1742 | start: CheckAnnotationPosition! | ||
1743 | } | ||
1744 | |||
1745 | """ | ||
1746 | The possible states for a check suite or run conclusion. | ||
1747 | """ | ||
1748 | enum CheckConclusionState @preview(toggledBy: "antiope-preview") { | ||
1749 | """ | ||
1750 | The check suite or run requires action. | ||
1751 | """ | ||
1752 | ACTION_REQUIRED | ||
1753 | |||
1754 | """ | ||
1755 | The check suite or run has been cancelled. | ||
1756 | """ | ||
1757 | CANCELLED | ||
1758 | |||
1759 | """ | ||
1760 | The check suite or run has failed. | ||
1761 | """ | ||
1762 | FAILURE | ||
1763 | |||
1764 | """ | ||
1765 | The check suite or run was neutral. | ||
1766 | """ | ||
1767 | NEUTRAL | ||
1768 | |||
1769 | """ | ||
1770 | The check suite or run was skipped. | ||
1771 | """ | ||
1772 | SKIPPED | ||
1773 | |||
1774 | """ | ||
1775 | The check suite or run was marked stale by GitHub. Only GitHub can use this conclusion. | ||
1776 | """ | ||
1777 | STALE | ||
1778 | |||
1779 | """ | ||
1780 | The check suite or run has succeeded. | ||
1781 | """ | ||
1782 | SUCCESS | ||
1783 | |||
1784 | """ | ||
1785 | The check suite or run has timed out. | ||
1786 | """ | ||
1787 | TIMED_OUT | ||
1788 | } | ||
1789 | |||
1790 | """ | ||
1791 | A check run. | ||
1792 | """ | ||
1793 | type CheckRun implements Node & UniformResourceLocatable @preview(toggledBy: "antiope-preview") { | ||
1794 | """ | ||
1795 | The check run's annotations | ||
1796 | """ | ||
1797 | annotations( | ||
1798 | """ | ||
1799 | Returns the elements in the list that come after the specified cursor. | ||
1800 | """ | ||
1801 | after: String | ||
1802 | |||
1803 | """ | ||
1804 | Returns the elements in the list that come before the specified cursor. | ||
1805 | """ | ||
1806 | before: String | ||
1807 | |||
1808 | """ | ||
1809 | Returns the first _n_ elements from the list. | ||
1810 | """ | ||
1811 | first: Int | ||
1812 | |||
1813 | """ | ||
1814 | Returns the last _n_ elements from the list. | ||
1815 | """ | ||
1816 | last: Int | ||
1817 | ): CheckAnnotationConnection | ||
1818 | |||
1819 | """ | ||
1820 | The check suite that this run is a part of. | ||
1821 | """ | ||
1822 | checkSuite: CheckSuite! | ||
1823 | |||
1824 | """ | ||
1825 | Identifies the date and time when the check run was completed. | ||
1826 | """ | ||
1827 | completedAt: DateTime | ||
1828 | |||
1829 | """ | ||
1830 | The conclusion of the check run. | ||
1831 | """ | ||
1832 | conclusion: CheckConclusionState | ||
1833 | |||
1834 | """ | ||
1835 | Identifies the primary key from the database. | ||
1836 | """ | ||
1837 | databaseId: Int | ||
1838 | |||
1839 | """ | ||
1840 | The URL from which to find full details of the check run on the integrator's site. | ||
1841 | """ | ||
1842 | detailsUrl: URI | ||
1843 | |||
1844 | """ | ||
1845 | A reference for the check run on the integrator's system. | ||
1846 | """ | ||
1847 | externalId: String | ||
1848 | id: ID! | ||
1849 | |||
1850 | """ | ||
1851 | The name of the check for this check run. | ||
1852 | """ | ||
1853 | name: String! | ||
1854 | |||
1855 | """ | ||
1856 | The permalink to the check run summary. | ||
1857 | """ | ||
1858 | permalink: URI! | ||
1859 | |||
1860 | """ | ||
1861 | The repository associated with this check run. | ||
1862 | """ | ||
1863 | repository: Repository! | ||
1864 | |||
1865 | """ | ||
1866 | The HTTP path for this check run. | ||
1867 | """ | ||
1868 | resourcePath: URI! | ||
1869 | |||
1870 | """ | ||
1871 | Identifies the date and time when the check run was started. | ||
1872 | """ | ||
1873 | startedAt: DateTime | ||
1874 | |||
1875 | """ | ||
1876 | The current status of the check run. | ||
1877 | """ | ||
1878 | status: CheckStatusState! | ||
1879 | |||
1880 | """ | ||
1881 | A string representing the check run's summary | ||
1882 | """ | ||
1883 | summary: String | ||
1884 | |||
1885 | """ | ||
1886 | A string representing the check run's text | ||
1887 | """ | ||
1888 | text: String | ||
1889 | |||
1890 | """ | ||
1891 | A string representing the check run | ||
1892 | """ | ||
1893 | title: String | ||
1894 | |||
1895 | """ | ||
1896 | The HTTP URL for this check run. | ||
1897 | """ | ||
1898 | url: URI! | ||
1899 | } | ||
1900 | |||
1901 | """ | ||
1902 | Possible further actions the integrator can perform. | ||
1903 | """ | ||
1904 | input CheckRunAction @preview(toggledBy: "antiope-preview") { | ||
1905 | """ | ||
1906 | A short explanation of what this action would do. | ||
1907 | """ | ||
1908 | description: String! | ||
1909 | |||
1910 | """ | ||
1911 | A reference for the action on the integrator's system. | ||
1912 | """ | ||
1913 | identifier: String! | ||
1914 | |||
1915 | """ | ||
1916 | The text to be displayed on a button in the web UI. | ||
1917 | """ | ||
1918 | label: String! | ||
1919 | } | ||
1920 | |||
1921 | """ | ||
1922 | The connection type for CheckRun. | ||
1923 | """ | ||
1924 | type CheckRunConnection { | ||
1925 | """ | ||
1926 | A list of edges. | ||
1927 | """ | ||
1928 | edges: [CheckRunEdge] | ||
1929 | |||
1930 | """ | ||
1931 | A list of nodes. | ||
1932 | """ | ||
1933 | nodes: [CheckRun] @preview(toggledBy: "antiope-preview") | ||
1934 | |||
1935 | """ | ||
1936 | Information to aid in pagination. | ||
1937 | """ | ||
1938 | pageInfo: PageInfo! | ||
1939 | |||
1940 | """ | ||
1941 | Identifies the total count of items in the connection. | ||
1942 | """ | ||
1943 | totalCount: Int! | ||
1944 | } | ||
1945 | |||
1946 | """ | ||
1947 | An edge in a connection. | ||
1948 | """ | ||
1949 | type CheckRunEdge { | ||
1950 | """ | ||
1951 | A cursor for use in pagination. | ||
1952 | """ | ||
1953 | cursor: String! | ||
1954 | |||
1955 | """ | ||
1956 | The item at the end of the edge. | ||
1957 | """ | ||
1958 | node: CheckRun @preview(toggledBy: "antiope-preview") | ||
1959 | } | ||
1960 | |||
1961 | """ | ||
1962 | The filters that are available when fetching check runs. | ||
1963 | """ | ||
1964 | input CheckRunFilter @preview(toggledBy: "antiope-preview") { | ||
1965 | """ | ||
1966 | Filters the check runs created by this application ID. | ||
1967 | """ | ||
1968 | appId: Int | ||
1969 | |||
1970 | """ | ||
1971 | Filters the check runs by this name. | ||
1972 | """ | ||
1973 | checkName: String | ||
1974 | |||
1975 | """ | ||
1976 | Filters the check runs by this type. | ||
1977 | """ | ||
1978 | checkType: CheckRunType | ||
1979 | |||
1980 | """ | ||
1981 | Filters the check runs by this status. | ||
1982 | """ | ||
1983 | status: CheckStatusState | ||
1984 | } | ||
1985 | |||
1986 | """ | ||
1987 | Descriptive details about the check run. | ||
1988 | """ | ||
1989 | input CheckRunOutput @preview(toggledBy: "antiope-preview") { | ||
1990 | """ | ||
1991 | The annotations that are made as part of the check run. | ||
1992 | """ | ||
1993 | annotations: [CheckAnnotationData!] | ||
1994 | |||
1995 | """ | ||
1996 | Images attached to the check run output displayed in the GitHub pull request UI. | ||
1997 | """ | ||
1998 | images: [CheckRunOutputImage!] | ||
1999 | |||
2000 | """ | ||
2001 | The summary of the check run (supports Commonmark). | ||
2002 | """ | ||
2003 | summary: String! | ||
2004 | |||
2005 | """ | ||
2006 | The details of the check run (supports Commonmark). | ||
2007 | """ | ||
2008 | text: String | ||
2009 | |||
2010 | """ | ||
2011 | A title to provide for this check run. | ||
2012 | """ | ||
2013 | title: String! | ||
2014 | } | ||
2015 | |||
2016 | """ | ||
2017 | Images attached to the check run output displayed in the GitHub pull request UI. | ||
2018 | """ | ||
2019 | input CheckRunOutputImage @preview(toggledBy: "antiope-preview") { | ||
2020 | """ | ||
2021 | The alternative text for the image. | ||
2022 | """ | ||
2023 | alt: String! | ||
2024 | |||
2025 | """ | ||
2026 | A short image description. | ||
2027 | """ | ||
2028 | caption: String | ||
2029 | |||
2030 | """ | ||
2031 | The full URL of the image. | ||
2032 | """ | ||
2033 | imageUrl: URI! | ||
2034 | } | ||
2035 | |||
2036 | """ | ||
2037 | The possible types of check runs. | ||
2038 | """ | ||
2039 | enum CheckRunType @preview(toggledBy: "antiope-preview") { | ||
2040 | """ | ||
2041 | Every check run available. | ||
2042 | """ | ||
2043 | ALL | ||
2044 | |||
2045 | """ | ||
2046 | The latest check run. | ||
2047 | """ | ||
2048 | LATEST | ||
2049 | } | ||
2050 | |||
2051 | """ | ||
2052 | The possible states for a check suite or run status. | ||
2053 | """ | ||
2054 | enum CheckStatusState @preview(toggledBy: "antiope-preview") { | ||
2055 | """ | ||
2056 | The check suite or run has been completed. | ||
2057 | """ | ||
2058 | COMPLETED | ||
2059 | |||
2060 | """ | ||
2061 | The check suite or run is in progress. | ||
2062 | """ | ||
2063 | IN_PROGRESS | ||
2064 | |||
2065 | """ | ||
2066 | The check suite or run has been queued. | ||
2067 | """ | ||
2068 | QUEUED | ||
2069 | |||
2070 | """ | ||
2071 | The check suite or run has been requested. | ||
2072 | """ | ||
2073 | REQUESTED | ||
2074 | } | ||
2075 | |||
2076 | """ | ||
2077 | A check suite. | ||
2078 | """ | ||
2079 | type CheckSuite implements Node @preview(toggledBy: "antiope-preview") { | ||
2080 | """ | ||
2081 | The GitHub App which created this check suite. | ||
2082 | """ | ||
2083 | app: App | ||
2084 | |||
2085 | """ | ||
2086 | The name of the branch for this check suite. | ||
2087 | """ | ||
2088 | branch: Ref | ||
2089 | |||
2090 | """ | ||
2091 | The check runs associated with a check suite. | ||
2092 | """ | ||
2093 | checkRuns( | ||
2094 | """ | ||
2095 | Returns the elements in the list that come after the specified cursor. | ||
2096 | """ | ||
2097 | after: String | ||
2098 | |||
2099 | """ | ||
2100 | Returns the elements in the list that come before the specified cursor. | ||
2101 | """ | ||
2102 | before: String | ||
2103 | |||
2104 | """ | ||
2105 | Filters the check runs by this type. | ||
2106 | """ | ||
2107 | filterBy: CheckRunFilter | ||
2108 | |||
2109 | """ | ||
2110 | Returns the first _n_ elements from the list. | ||
2111 | """ | ||
2112 | first: Int | ||
2113 | |||
2114 | """ | ||
2115 | Returns the last _n_ elements from the list. | ||
2116 | """ | ||
2117 | last: Int | ||
2118 | ): CheckRunConnection | ||
2119 | |||
2120 | """ | ||
2121 | The commit for this check suite | ||
2122 | """ | ||
2123 | commit: Commit! | ||
2124 | |||
2125 | """ | ||
2126 | The conclusion of this check suite. | ||
2127 | """ | ||
2128 | conclusion: CheckConclusionState | ||
2129 | |||
2130 | """ | ||
2131 | Identifies the date and time when the object was created. | ||
2132 | """ | ||
2133 | createdAt: DateTime! | ||
2134 | |||
2135 | """ | ||
2136 | Identifies the primary key from the database. | ||
2137 | """ | ||
2138 | databaseId: Int | ||
2139 | id: ID! | ||
2140 | |||
2141 | """ | ||
2142 | A list of open pull requests matching the check suite. | ||
2143 | """ | ||
2144 | matchingPullRequests( | ||
2145 | """ | ||
2146 | Returns the elements in the list that come after the specified cursor. | ||
2147 | """ | ||
2148 | after: String | ||
2149 | |||
2150 | """ | ||
2151 | The base ref name to filter the pull requests by. | ||
2152 | """ | ||
2153 | baseRefName: String | ||
2154 | |||
2155 | """ | ||
2156 | Returns the elements in the list that come before the specified cursor. | ||
2157 | """ | ||
2158 | before: String | ||
2159 | |||
2160 | """ | ||
2161 | Returns the first _n_ elements from the list. | ||
2162 | """ | ||
2163 | first: Int | ||
2164 | |||
2165 | """ | ||
2166 | The head ref name to filter the pull requests by. | ||
2167 | """ | ||
2168 | headRefName: String | ||
2169 | |||
2170 | """ | ||
2171 | A list of label names to filter the pull requests by. | ||
2172 | """ | ||
2173 | labels: [String!] | ||
2174 | |||
2175 | """ | ||
2176 | Returns the last _n_ elements from the list. | ||
2177 | """ | ||
2178 | last: Int | ||
2179 | |||
2180 | """ | ||
2181 | Ordering options for pull requests returned from the connection. | ||
2182 | """ | ||
2183 | orderBy: IssueOrder | ||
2184 | |||
2185 | """ | ||
2186 | A list of states to filter the pull requests by. | ||
2187 | """ | ||
2188 | states: [PullRequestState!] | ||
2189 | ): PullRequestConnection | ||
2190 | |||
2191 | """ | ||
2192 | The push that triggered this check suite. | ||
2193 | """ | ||
2194 | push: Push | ||
2195 | |||
2196 | """ | ||
2197 | The repository associated with this check suite. | ||
2198 | """ | ||
2199 | repository: Repository! | ||
2200 | |||
2201 | """ | ||
2202 | The HTTP path for this check suite | ||
2203 | """ | ||
2204 | resourcePath: URI! | ||
2205 | |||
2206 | """ | ||
2207 | The status of this check suite. | ||
2208 | """ | ||
2209 | status: CheckStatusState! | ||
2210 | |||
2211 | """ | ||
2212 | Identifies the date and time when the object was last updated. | ||
2213 | """ | ||
2214 | updatedAt: DateTime! | ||
2215 | |||
2216 | """ | ||
2217 | The HTTP URL for this check suite | ||
2218 | """ | ||
2219 | url: URI! | ||
2220 | } | ||
2221 | |||
2222 | """ | ||
2223 | The auto-trigger preferences that are available for check suites. | ||
2224 | """ | ||
2225 | input CheckSuiteAutoTriggerPreference @preview(toggledBy: "antiope-preview") { | ||
2226 | """ | ||
2227 | The node ID of the application that owns the check suite. | ||
2228 | """ | ||
2229 | appId: ID! | ||
2230 | |||
2231 | """ | ||
2232 | Set to `true` to enable automatic creation of CheckSuite events upon pushes to the repository. | ||
2233 | """ | ||
2234 | setting: Boolean! | ||
2235 | } | ||
2236 | |||
2237 | """ | ||
2238 | The connection type for CheckSuite. | ||
2239 | """ | ||
2240 | type CheckSuiteConnection { | ||
2241 | """ | ||
2242 | A list of edges. | ||
2243 | """ | ||
2244 | edges: [CheckSuiteEdge] | ||
2245 | |||
2246 | """ | ||
2247 | A list of nodes. | ||
2248 | """ | ||
2249 | nodes: [CheckSuite] @preview(toggledBy: "antiope-preview") | ||
2250 | |||
2251 | """ | ||
2252 | Information to aid in pagination. | ||
2253 | """ | ||
2254 | pageInfo: PageInfo! | ||
2255 | |||
2256 | """ | ||
2257 | Identifies the total count of items in the connection. | ||
2258 | """ | ||
2259 | totalCount: Int! | ||
2260 | } | ||
2261 | |||
2262 | """ | ||
2263 | An edge in a connection. | ||
2264 | """ | ||
2265 | type CheckSuiteEdge { | ||
2266 | """ | ||
2267 | A cursor for use in pagination. | ||
2268 | """ | ||
2269 | cursor: String! | ||
2270 | |||
2271 | """ | ||
2272 | The item at the end of the edge. | ||
2273 | """ | ||
2274 | node: CheckSuite @preview(toggledBy: "antiope-preview") | ||
2275 | } | ||
2276 | |||
2277 | """ | ||
2278 | The filters that are available when fetching check suites. | ||
2279 | """ | ||
2280 | input CheckSuiteFilter @preview(toggledBy: "antiope-preview") { | ||
2281 | """ | ||
2282 | Filters the check suites created by this application ID. | ||
2283 | """ | ||
2284 | appId: Int | ||
2285 | |||
2286 | """ | ||
2287 | Filters the check suites by this name. | ||
2288 | """ | ||
2289 | checkName: String | ||
2290 | } | ||
2291 | |||
2292 | """ | ||
2293 | Autogenerated input type of ClearLabelsFromLabelable | ||
2294 | """ | ||
2295 | input ClearLabelsFromLabelableInput { | ||
2296 | """ | ||
2297 | A unique identifier for the client performing the mutation. | ||
2298 | """ | ||
2299 | clientMutationId: String | ||
2300 | |||
2301 | """ | ||
2302 | The id of the labelable object to clear the labels from. | ||
2303 | """ | ||
2304 | labelableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Labelable") | ||
2305 | } | ||
2306 | |||
2307 | """ | ||
2308 | Autogenerated return type of ClearLabelsFromLabelable | ||
2309 | """ | ||
2310 | type ClearLabelsFromLabelablePayload { | ||
2311 | """ | ||
2312 | A unique identifier for the client performing the mutation. | ||
2313 | """ | ||
2314 | clientMutationId: String | ||
2315 | |||
2316 | """ | ||
2317 | The item that was unlabeled. | ||
2318 | """ | ||
2319 | labelable: Labelable | ||
2320 | } | ||
2321 | |||
2322 | """ | ||
2323 | Autogenerated input type of CloneProject | ||
2324 | """ | ||
2325 | input CloneProjectInput { | ||
2326 | """ | ||
2327 | The description of the project. | ||
2328 | """ | ||
2329 | body: String | ||
2330 | |||
2331 | """ | ||
2332 | A unique identifier for the client performing the mutation. | ||
2333 | """ | ||
2334 | clientMutationId: String | ||
2335 | |||
2336 | """ | ||
2337 | Whether or not to clone the source project's workflows. | ||
2338 | """ | ||
2339 | includeWorkflows: Boolean! | ||
2340 | |||
2341 | """ | ||
2342 | The name of the project. | ||
2343 | """ | ||
2344 | name: String! | ||
2345 | |||
2346 | """ | ||
2347 | The visibility of the project, defaults to false (private). | ||
2348 | """ | ||
2349 | public: Boolean | ||
2350 | |||
2351 | """ | ||
2352 | The source project to clone. | ||
2353 | """ | ||
2354 | sourceId: ID! @possibleTypes(concreteTypes: ["Project"]) | ||
2355 | |||
2356 | """ | ||
2357 | The owner ID to create the project under. | ||
2358 | """ | ||
2359 | targetOwnerId: ID! @possibleTypes(concreteTypes: ["Organization", "Repository", "User"], abstractType: "ProjectOwner") | ||
2360 | } | ||
2361 | |||
2362 | """ | ||
2363 | Autogenerated return type of CloneProject | ||
2364 | """ | ||
2365 | type CloneProjectPayload { | ||
2366 | """ | ||
2367 | A unique identifier for the client performing the mutation. | ||
2368 | """ | ||
2369 | clientMutationId: String | ||
2370 | |||
2371 | """ | ||
2372 | The id of the JobStatus for populating cloned fields. | ||
2373 | """ | ||
2374 | jobStatusId: String | ||
2375 | |||
2376 | """ | ||
2377 | The new cloned project. | ||
2378 | """ | ||
2379 | project: Project | ||
2380 | } | ||
2381 | |||
2382 | """ | ||
2383 | Autogenerated input type of CloneTemplateRepository | ||
2384 | """ | ||
2385 | input CloneTemplateRepositoryInput { | ||
2386 | """ | ||
2387 | A unique identifier for the client performing the mutation. | ||
2388 | """ | ||
2389 | clientMutationId: String | ||
2390 | |||
2391 | """ | ||
2392 | A short description of the new repository. | ||
2393 | """ | ||
2394 | description: String | ||
2395 | |||
2396 | """ | ||
2397 | Whether to copy all branches from the template to the new repository. Defaults | ||
2398 | to copying only the default branch of the template. | ||
2399 | """ | ||
2400 | includeAllBranches: Boolean = false | ||
2401 | |||
2402 | """ | ||
2403 | The name of the new repository. | ||
2404 | """ | ||
2405 | name: String! | ||
2406 | |||
2407 | """ | ||
2408 | The ID of the owner for the new repository. | ||
2409 | """ | ||
2410 | ownerId: ID! @possibleTypes(concreteTypes: ["Organization", "User"], abstractType: "RepositoryOwner") | ||
2411 | |||
2412 | """ | ||
2413 | The Node ID of the template repository. | ||
2414 | """ | ||
2415 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
2416 | |||
2417 | """ | ||
2418 | Indicates the repository's visibility level. | ||
2419 | """ | ||
2420 | visibility: RepositoryVisibility! | ||
2421 | } | ||
2422 | |||
2423 | """ | ||
2424 | Autogenerated return type of CloneTemplateRepository | ||
2425 | """ | ||
2426 | type CloneTemplateRepositoryPayload { | ||
2427 | """ | ||
2428 | A unique identifier for the client performing the mutation. | ||
2429 | """ | ||
2430 | clientMutationId: String | ||
2431 | |||
2432 | """ | ||
2433 | The new repository. | ||
2434 | """ | ||
2435 | repository: Repository | ||
2436 | } | ||
2437 | |||
2438 | """ | ||
2439 | An object that can be closed | ||
2440 | """ | ||
2441 | interface Closable { | ||
2442 | """ | ||
2443 | `true` if the object is closed (definition of closed may depend on type) | ||
2444 | """ | ||
2445 | closed: Boolean! | ||
2446 | |||
2447 | """ | ||
2448 | Identifies the date and time when the object was closed. | ||
2449 | """ | ||
2450 | closedAt: DateTime | ||
2451 | } | ||
2452 | |||
2453 | """ | ||
2454 | Autogenerated input type of CloseIssue | ||
2455 | """ | ||
2456 | input CloseIssueInput { | ||
2457 | """ | ||
2458 | A unique identifier for the client performing the mutation. | ||
2459 | """ | ||
2460 | clientMutationId: String | ||
2461 | |||
2462 | """ | ||
2463 | ID of the issue to be closed. | ||
2464 | """ | ||
2465 | issueId: ID! @possibleTypes(concreteTypes: ["Issue"]) | ||
2466 | } | ||
2467 | |||
2468 | """ | ||
2469 | Autogenerated return type of CloseIssue | ||
2470 | """ | ||
2471 | type CloseIssuePayload { | ||
2472 | """ | ||
2473 | A unique identifier for the client performing the mutation. | ||
2474 | """ | ||
2475 | clientMutationId: String | ||
2476 | |||
2477 | """ | ||
2478 | The issue that was closed. | ||
2479 | """ | ||
2480 | issue: Issue | ||
2481 | } | ||
2482 | |||
2483 | """ | ||
2484 | Autogenerated input type of ClosePullRequest | ||
2485 | """ | ||
2486 | input ClosePullRequestInput { | ||
2487 | """ | ||
2488 | A unique identifier for the client performing the mutation. | ||
2489 | """ | ||
2490 | clientMutationId: String | ||
2491 | |||
2492 | """ | ||
2493 | ID of the pull request to be closed. | ||
2494 | """ | ||
2495 | pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"]) | ||
2496 | } | ||
2497 | |||
2498 | """ | ||
2499 | Autogenerated return type of ClosePullRequest | ||
2500 | """ | ||
2501 | type ClosePullRequestPayload { | ||
2502 | """ | ||
2503 | A unique identifier for the client performing the mutation. | ||
2504 | """ | ||
2505 | clientMutationId: String | ||
2506 | |||
2507 | """ | ||
2508 | The pull request that was closed. | ||
2509 | """ | ||
2510 | pullRequest: PullRequest | ||
2511 | } | ||
2512 | |||
2513 | """ | ||
2514 | Represents a 'closed' event on any `Closable`. | ||
2515 | """ | ||
2516 | type ClosedEvent implements Node & UniformResourceLocatable { | ||
2517 | """ | ||
2518 | Identifies the actor who performed the event. | ||
2519 | """ | ||
2520 | actor: Actor | ||
2521 | |||
2522 | """ | ||
2523 | Object that was closed. | ||
2524 | """ | ||
2525 | closable: Closable! | ||
2526 | |||
2527 | """ | ||
2528 | Object which triggered the creation of this event. | ||
2529 | """ | ||
2530 | closer: Closer | ||
2531 | |||
2532 | """ | ||
2533 | Identifies the date and time when the object was created. | ||
2534 | """ | ||
2535 | createdAt: DateTime! | ||
2536 | id: ID! | ||
2537 | |||
2538 | """ | ||
2539 | The HTTP path for this closed event. | ||
2540 | """ | ||
2541 | resourcePath: URI! | ||
2542 | |||
2543 | """ | ||
2544 | The HTTP URL for this closed event. | ||
2545 | """ | ||
2546 | url: URI! | ||
2547 | } | ||
2548 | |||
2549 | """ | ||
2550 | The object which triggered a `ClosedEvent`. | ||
2551 | """ | ||
2552 | union Closer = Commit | PullRequest | ||
2553 | |||
2554 | """ | ||
2555 | The Code of Conduct for a repository | ||
2556 | """ | ||
2557 | type CodeOfConduct implements Node { | ||
2558 | """ | ||
2559 | The body of the Code of Conduct | ||
2560 | """ | ||
2561 | body: String | ||
2562 | id: ID! | ||
2563 | |||
2564 | """ | ||
2565 | The key for the Code of Conduct | ||
2566 | """ | ||
2567 | key: String! | ||
2568 | |||
2569 | """ | ||
2570 | The formal name of the Code of Conduct | ||
2571 | """ | ||
2572 | name: String! | ||
2573 | |||
2574 | """ | ||
2575 | The HTTP path for this Code of Conduct | ||
2576 | """ | ||
2577 | resourcePath: URI | ||
2578 | |||
2579 | """ | ||
2580 | The HTTP URL for this Code of Conduct | ||
2581 | """ | ||
2582 | url: URI | ||
2583 | } | ||
2584 | |||
2585 | """ | ||
2586 | Collaborators affiliation level with a subject. | ||
2587 | """ | ||
2588 | enum CollaboratorAffiliation { | ||
2589 | """ | ||
2590 | All collaborators the authenticated user can see. | ||
2591 | """ | ||
2592 | ALL | ||
2593 | |||
2594 | """ | ||
2595 | All collaborators with permissions to an organization-owned subject, regardless of organization membership status. | ||
2596 | """ | ||
2597 | DIRECT | ||
2598 | |||
2599 | """ | ||
2600 | All outside collaborators of an organization-owned subject. | ||
2601 | """ | ||
2602 | OUTSIDE | ||
2603 | } | ||
2604 | |||
2605 | """ | ||
2606 | Represents a comment. | ||
2607 | """ | ||
2608 | interface Comment { | ||
2609 | """ | ||
2610 | The actor who authored the comment. | ||
2611 | """ | ||
2612 | author: Actor | ||
2613 | |||
2614 | """ | ||
2615 | Author's association with the subject of the comment. | ||
2616 | """ | ||
2617 | authorAssociation: CommentAuthorAssociation! | ||
2618 | |||
2619 | """ | ||
2620 | The body as Markdown. | ||
2621 | """ | ||
2622 | body: String! | ||
2623 | |||
2624 | """ | ||
2625 | The body rendered to HTML. | ||
2626 | """ | ||
2627 | bodyHTML: HTML! | ||
2628 | |||
2629 | """ | ||
2630 | The body rendered to text. | ||
2631 | """ | ||
2632 | bodyText: String! | ||
2633 | |||
2634 | """ | ||
2635 | Identifies the date and time when the object was created. | ||
2636 | """ | ||
2637 | createdAt: DateTime! | ||
2638 | |||
2639 | """ | ||
2640 | Check if this comment was created via an email reply. | ||
2641 | """ | ||
2642 | createdViaEmail: Boolean! | ||
2643 | |||
2644 | """ | ||
2645 | The actor who edited the comment. | ||
2646 | """ | ||
2647 | editor: Actor | ||
2648 | id: ID! | ||
2649 | |||
2650 | """ | ||
2651 | Check if this comment was edited and includes an edit with the creation data | ||
2652 | """ | ||
2653 | includesCreatedEdit: Boolean! | ||
2654 | |||
2655 | """ | ||
2656 | The moment the editor made the last edit | ||
2657 | """ | ||
2658 | lastEditedAt: DateTime | ||
2659 | |||
2660 | """ | ||
2661 | Identifies when the comment was published at. | ||
2662 | """ | ||
2663 | publishedAt: DateTime | ||
2664 | |||
2665 | """ | ||
2666 | Identifies the date and time when the object was last updated. | ||
2667 | """ | ||
2668 | updatedAt: DateTime! | ||
2669 | |||
2670 | """ | ||
2671 | A list of edits to this content. | ||
2672 | """ | ||
2673 | userContentEdits( | ||
2674 | """ | ||
2675 | Returns the elements in the list that come after the specified cursor. | ||
2676 | """ | ||
2677 | after: String | ||
2678 | |||
2679 | """ | ||
2680 | Returns the elements in the list that come before the specified cursor. | ||
2681 | """ | ||
2682 | before: String | ||
2683 | |||
2684 | """ | ||
2685 | Returns the first _n_ elements from the list. | ||
2686 | """ | ||
2687 | first: Int | ||
2688 | |||
2689 | """ | ||
2690 | Returns the last _n_ elements from the list. | ||
2691 | """ | ||
2692 | last: Int | ||
2693 | ): UserContentEditConnection | ||
2694 | |||
2695 | """ | ||
2696 | Did the viewer author this comment. | ||
2697 | """ | ||
2698 | viewerDidAuthor: Boolean! | ||
2699 | } | ||
2700 | |||
2701 | """ | ||
2702 | A comment author association with repository. | ||
2703 | """ | ||
2704 | enum CommentAuthorAssociation { | ||
2705 | """ | ||
2706 | Author has been invited to collaborate on the repository. | ||
2707 | """ | ||
2708 | COLLABORATOR | ||
2709 | |||
2710 | """ | ||
2711 | Author has previously committed to the repository. | ||
2712 | """ | ||
2713 | CONTRIBUTOR | ||
2714 | |||
2715 | """ | ||
2716 | Author has not previously committed to GitHub. | ||
2717 | """ | ||
2718 | FIRST_TIMER | ||
2719 | |||
2720 | """ | ||
2721 | Author has not previously committed to the repository. | ||
2722 | """ | ||
2723 | FIRST_TIME_CONTRIBUTOR | ||
2724 | |||
2725 | """ | ||
2726 | Author is a member of the organization that owns the repository. | ||
2727 | """ | ||
2728 | MEMBER | ||
2729 | |||
2730 | """ | ||
2731 | Author has no association with the repository. | ||
2732 | """ | ||
2733 | NONE | ||
2734 | |||
2735 | """ | ||
2736 | Author is the owner of the repository. | ||
2737 | """ | ||
2738 | OWNER | ||
2739 | } | ||
2740 | |||
2741 | """ | ||
2742 | The possible errors that will prevent a user from updating a comment. | ||
2743 | """ | ||
2744 | enum CommentCannotUpdateReason { | ||
2745 | """ | ||
2746 | Unable to create comment because repository is archived. | ||
2747 | """ | ||
2748 | ARCHIVED | ||
2749 | |||
2750 | """ | ||
2751 | You cannot update this comment | ||
2752 | """ | ||
2753 | DENIED | ||
2754 | |||
2755 | """ | ||
2756 | You must be the author or have write access to this repository to update this comment. | ||
2757 | """ | ||
2758 | INSUFFICIENT_ACCESS | ||
2759 | |||
2760 | """ | ||
2761 | Unable to create comment because issue is locked. | ||
2762 | """ | ||
2763 | LOCKED | ||
2764 | |||
2765 | """ | ||
2766 | You must be logged in to update this comment. | ||
2767 | """ | ||
2768 | LOGIN_REQUIRED | ||
2769 | |||
2770 | """ | ||
2771 | Repository is under maintenance. | ||
2772 | """ | ||
2773 | MAINTENANCE | ||
2774 | |||
2775 | """ | ||
2776 | At least one email address must be verified to update this comment. | ||
2777 | """ | ||
2778 | VERIFIED_EMAIL_REQUIRED | ||
2779 | } | ||
2780 | |||
2781 | """ | ||
2782 | Represents a 'comment_deleted' event on a given issue or pull request. | ||
2783 | """ | ||
2784 | type CommentDeletedEvent implements Node { | ||
2785 | """ | ||
2786 | Identifies the actor who performed the event. | ||
2787 | """ | ||
2788 | actor: Actor | ||
2789 | |||
2790 | """ | ||
2791 | Identifies the date and time when the object was created. | ||
2792 | """ | ||
2793 | createdAt: DateTime! | ||
2794 | |||
2795 | """ | ||
2796 | Identifies the primary key from the database. | ||
2797 | """ | ||
2798 | databaseId: Int | ||
2799 | id: ID! | ||
2800 | } | ||
2801 | |||
2802 | """ | ||
2803 | Represents a Git commit. | ||
2804 | """ | ||
2805 | type Commit implements GitObject & Node & Subscribable & UniformResourceLocatable { | ||
2806 | """ | ||
2807 | An abbreviated version of the Git object ID | ||
2808 | """ | ||
2809 | abbreviatedOid: String! | ||
2810 | |||
2811 | """ | ||
2812 | The number of additions in this commit. | ||
2813 | """ | ||
2814 | additions: Int! | ||
2815 | |||
2816 | """ | ||
2817 | The pull requests associated with a commit | ||
2818 | """ | ||
2819 | associatedPullRequests( | ||
2820 | """ | ||
2821 | Returns the elements in the list that come after the specified cursor. | ||
2822 | """ | ||
2823 | after: String | ||
2824 | |||
2825 | """ | ||
2826 | Returns the elements in the list that come before the specified cursor. | ||
2827 | """ | ||
2828 | before: String | ||
2829 | |||
2830 | """ | ||
2831 | Returns the first _n_ elements from the list. | ||
2832 | """ | ||
2833 | first: Int | ||
2834 | |||
2835 | """ | ||
2836 | Returns the last _n_ elements from the list. | ||
2837 | """ | ||
2838 | last: Int | ||
2839 | |||
2840 | """ | ||
2841 | Ordering options for pull requests. | ||
2842 | """ | ||
2843 | orderBy: PullRequestOrder = {field: CREATED_AT, direction: ASC} | ||
2844 | ): PullRequestConnection | ||
2845 | |||
2846 | """ | ||
2847 | Authorship details of the commit. | ||
2848 | """ | ||
2849 | author: GitActor | ||
2850 | |||
2851 | """ | ||
2852 | Check if the committer and the author match. | ||
2853 | """ | ||
2854 | authoredByCommitter: Boolean! | ||
2855 | |||
2856 | """ | ||
2857 | The datetime when this commit was authored. | ||
2858 | """ | ||
2859 | authoredDate: DateTime! | ||
2860 | |||
2861 | """ | ||
2862 | Fetches `git blame` information. | ||
2863 | """ | ||
2864 | blame( | ||
2865 | """ | ||
2866 | The file whose Git blame information you want. | ||
2867 | """ | ||
2868 | path: String! | ||
2869 | ): Blame! | ||
2870 | |||
2871 | """ | ||
2872 | The number of changed files in this commit. | ||
2873 | """ | ||
2874 | changedFiles: Int! | ||
2875 | |||
2876 | """ | ||
2877 | The check suites associated with a commit. | ||
2878 | """ | ||
2879 | checkSuites( | ||
2880 | """ | ||
2881 | Returns the elements in the list that come after the specified cursor. | ||
2882 | """ | ||
2883 | after: String | ||
2884 | |||
2885 | """ | ||
2886 | Returns the elements in the list that come before the specified cursor. | ||
2887 | """ | ||
2888 | before: String | ||
2889 | |||
2890 | """ | ||
2891 | Filters the check suites by this type. | ||
2892 | """ | ||
2893 | filterBy: CheckSuiteFilter | ||
2894 | |||
2895 | """ | ||
2896 | Returns the first _n_ elements from the list. | ||
2897 | """ | ||
2898 | first: Int | ||
2899 | |||
2900 | """ | ||
2901 | Returns the last _n_ elements from the list. | ||
2902 | """ | ||
2903 | last: Int | ||
2904 | ): CheckSuiteConnection @preview(toggledBy: "antiope-preview") | ||
2905 | |||
2906 | """ | ||
2907 | Comments made on the commit. | ||
2908 | """ | ||
2909 | comments( | ||
2910 | """ | ||
2911 | Returns the elements in the list that come after the specified cursor. | ||
2912 | """ | ||
2913 | after: String | ||
2914 | |||
2915 | """ | ||
2916 | Returns the elements in the list that come before the specified cursor. | ||
2917 | """ | ||
2918 | before: String | ||
2919 | |||
2920 | """ | ||
2921 | Returns the first _n_ elements from the list. | ||
2922 | """ | ||
2923 | first: Int | ||
2924 | |||
2925 | """ | ||
2926 | Returns the last _n_ elements from the list. | ||
2927 | """ | ||
2928 | last: Int | ||
2929 | ): CommitCommentConnection! | ||
2930 | |||
2931 | """ | ||
2932 | The HTTP path for this Git object | ||
2933 | """ | ||
2934 | commitResourcePath: URI! | ||
2935 | |||
2936 | """ | ||
2937 | The HTTP URL for this Git object | ||
2938 | """ | ||
2939 | commitUrl: URI! | ||
2940 | |||
2941 | """ | ||
2942 | The datetime when this commit was committed. | ||
2943 | """ | ||
2944 | committedDate: DateTime! | ||
2945 | |||
2946 | """ | ||
2947 | Check if commited via GitHub web UI. | ||
2948 | """ | ||
2949 | committedViaWeb: Boolean! | ||
2950 | |||
2951 | """ | ||
2952 | Committership details of the commit. | ||
2953 | """ | ||
2954 | committer: GitActor | ||
2955 | |||
2956 | """ | ||
2957 | The number of deletions in this commit. | ||
2958 | """ | ||
2959 | deletions: Int! | ||
2960 | |||
2961 | """ | ||
2962 | The deployments associated with a commit. | ||
2963 | """ | ||
2964 | deployments( | ||
2965 | """ | ||
2966 | Returns the elements in the list that come after the specified cursor. | ||
2967 | """ | ||
2968 | after: String | ||
2969 | |||
2970 | """ | ||
2971 | Returns the elements in the list that come before the specified cursor. | ||
2972 | """ | ||
2973 | before: String | ||
2974 | |||
2975 | """ | ||
2976 | Environments to list deployments for | ||
2977 | """ | ||
2978 | environments: [String!] | ||
2979 | |||
2980 | """ | ||
2981 | Returns the first _n_ elements from the list. | ||
2982 | """ | ||
2983 | first: Int | ||
2984 | |||
2985 | """ | ||
2986 | Returns the last _n_ elements from the list. | ||
2987 | """ | ||
2988 | last: Int | ||
2989 | |||
2990 | """ | ||
2991 | Ordering options for deployments returned from the connection. | ||
2992 | """ | ||
2993 | orderBy: DeploymentOrder = {field: CREATED_AT, direction: ASC} | ||
2994 | ): DeploymentConnection | ||
2995 | |||
2996 | """ | ||
2997 | The linear commit history starting from (and including) this commit, in the same order as `git log`. | ||
2998 | """ | ||
2999 | history( | ||
3000 | """ | ||
3001 | Returns the elements in the list that come after the specified cursor. | ||
3002 | """ | ||
3003 | after: String | ||
3004 | |||
3005 | """ | ||
3006 | If non-null, filters history to only show commits with matching authorship. | ||
3007 | """ | ||
3008 | author: CommitAuthor | ||
3009 | |||
3010 | """ | ||
3011 | Returns the elements in the list that come before the specified cursor. | ||
3012 | """ | ||
3013 | before: String | ||
3014 | |||
3015 | """ | ||
3016 | Returns the first _n_ elements from the list. | ||
3017 | """ | ||
3018 | first: Int | ||
3019 | |||
3020 | """ | ||
3021 | Returns the last _n_ elements from the list. | ||
3022 | """ | ||
3023 | last: Int | ||
3024 | |||
3025 | """ | ||
3026 | If non-null, filters history to only show commits touching files under this path. | ||
3027 | """ | ||
3028 | path: String | ||
3029 | |||
3030 | """ | ||
3031 | Allows specifying a beginning time or date for fetching commits. | ||
3032 | """ | ||
3033 | since: GitTimestamp | ||
3034 | |||
3035 | """ | ||
3036 | Allows specifying an ending time or date for fetching commits. | ||
3037 | """ | ||
3038 | until: GitTimestamp | ||
3039 | ): CommitHistoryConnection! | ||
3040 | id: ID! | ||
3041 | |||
3042 | """ | ||
3043 | The Git commit message | ||
3044 | """ | ||
3045 | message: String! | ||
3046 | |||
3047 | """ | ||
3048 | The Git commit message body | ||
3049 | """ | ||
3050 | messageBody: String! | ||
3051 | |||
3052 | """ | ||
3053 | The commit message body rendered to HTML. | ||
3054 | """ | ||
3055 | messageBodyHTML: HTML! | ||
3056 | |||
3057 | """ | ||
3058 | The Git commit message headline | ||
3059 | """ | ||
3060 | messageHeadline: String! | ||
3061 | |||
3062 | """ | ||
3063 | The commit message headline rendered to HTML. | ||
3064 | """ | ||
3065 | messageHeadlineHTML: HTML! | ||
3066 | |||
3067 | """ | ||
3068 | The Git object ID | ||
3069 | """ | ||
3070 | oid: GitObjectID! | ||
3071 | |||
3072 | """ | ||
3073 | The organization this commit was made on behalf of. | ||
3074 | """ | ||
3075 | onBehalfOf: Organization | ||
3076 | |||
3077 | """ | ||
3078 | The parents of a commit. | ||
3079 | """ | ||
3080 | parents( | ||
3081 | """ | ||
3082 | Returns the elements in the list that come after the specified cursor. | ||
3083 | """ | ||
3084 | after: String | ||
3085 | |||
3086 | """ | ||
3087 | Returns the elements in the list that come before the specified cursor. | ||
3088 | """ | ||
3089 | before: String | ||
3090 | |||
3091 | """ | ||
3092 | Returns the first _n_ elements from the list. | ||
3093 | """ | ||
3094 | first: Int | ||
3095 | |||
3096 | """ | ||
3097 | Returns the last _n_ elements from the list. | ||
3098 | """ | ||
3099 | last: Int | ||
3100 | ): CommitConnection! | ||
3101 | |||
3102 | """ | ||
3103 | The datetime when this commit was pushed. | ||
3104 | """ | ||
3105 | pushedDate: DateTime | ||
3106 | |||
3107 | """ | ||
3108 | The Repository this commit belongs to | ||
3109 | """ | ||
3110 | repository: Repository! | ||
3111 | |||
3112 | """ | ||
3113 | The HTTP path for this commit | ||
3114 | """ | ||
3115 | resourcePath: URI! | ||
3116 | |||
3117 | """ | ||
3118 | Commit signing information, if present. | ||
3119 | """ | ||
3120 | signature: GitSignature | ||
3121 | |||
3122 | """ | ||
3123 | Status information for this commit | ||
3124 | """ | ||
3125 | status: Status | ||
3126 | |||
3127 | """ | ||
3128 | Check and Status rollup information for this commit. | ||
3129 | """ | ||
3130 | statusCheckRollup: StatusCheckRollup | ||
3131 | |||
3132 | """ | ||
3133 | Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file. | ||
3134 | """ | ||
3135 | submodules( | ||
3136 | """ | ||
3137 | Returns the elements in the list that come after the specified cursor. | ||
3138 | """ | ||
3139 | after: String | ||
3140 | |||
3141 | """ | ||
3142 | Returns the elements in the list that come before the specified cursor. | ||
3143 | """ | ||
3144 | before: String | ||
3145 | |||
3146 | """ | ||
3147 | Returns the first _n_ elements from the list. | ||
3148 | """ | ||
3149 | first: Int | ||
3150 | |||
3151 | """ | ||
3152 | Returns the last _n_ elements from the list. | ||
3153 | """ | ||
3154 | last: Int | ||
3155 | ): SubmoduleConnection! | ||
3156 | |||
3157 | """ | ||
3158 | Returns a URL to download a tarball archive for a repository. | ||
3159 | Note: For private repositories, these links are temporary and expire after five minutes. | ||
3160 | """ | ||
3161 | tarballUrl: URI! | ||
3162 | |||
3163 | """ | ||
3164 | Commit's root Tree | ||
3165 | """ | ||
3166 | tree: Tree! | ||
3167 | |||
3168 | """ | ||
3169 | The HTTP path for the tree of this commit | ||
3170 | """ | ||
3171 | treeResourcePath: URI! | ||
3172 | |||
3173 | """ | ||
3174 | The HTTP URL for the tree of this commit | ||
3175 | """ | ||
3176 | treeUrl: URI! | ||
3177 | |||
3178 | """ | ||
3179 | The HTTP URL for this commit | ||
3180 | """ | ||
3181 | url: URI! | ||
3182 | |||
3183 | """ | ||
3184 | Check if the viewer is able to change their subscription status for the repository. | ||
3185 | """ | ||
3186 | viewerCanSubscribe: Boolean! | ||
3187 | |||
3188 | """ | ||
3189 | Identifies if the viewer is watching, not watching, or ignoring the subscribable entity. | ||
3190 | """ | ||
3191 | viewerSubscription: SubscriptionState | ||
3192 | |||
3193 | """ | ||
3194 | Returns a URL to download a zipball archive for a repository. | ||
3195 | Note: For private repositories, these links are temporary and expire after five minutes. | ||
3196 | """ | ||
3197 | zipballUrl: URI! | ||
3198 | } | ||
3199 | |||
3200 | """ | ||
3201 | Specifies an author for filtering Git commits. | ||
3202 | """ | ||
3203 | input CommitAuthor { | ||
3204 | """ | ||
3205 | Email addresses to filter by. Commits authored by any of the specified email addresses will be returned. | ||
3206 | """ | ||
3207 | emails: [String!] | ||
3208 | |||
3209 | """ | ||
3210 | ID of a User to filter by. If non-null, only commits authored by this user | ||
3211 | will be returned. This field takes precedence over emails. | ||
3212 | """ | ||
3213 | id: ID | ||
3214 | } | ||
3215 | |||
3216 | """ | ||
3217 | Represents a comment on a given Commit. | ||
3218 | """ | ||
3219 | type CommitComment implements Comment & Deletable & Minimizable & Node & Reactable & RepositoryNode & Updatable & UpdatableComment { | ||
3220 | """ | ||
3221 | The actor who authored the comment. | ||
3222 | """ | ||
3223 | author: Actor | ||
3224 | |||
3225 | """ | ||
3226 | Author's association with the subject of the comment. | ||
3227 | """ | ||
3228 | authorAssociation: CommentAuthorAssociation! | ||
3229 | |||
3230 | """ | ||
3231 | Identifies the comment body. | ||
3232 | """ | ||
3233 | body: String! | ||
3234 | |||
3235 | """ | ||
3236 | The body rendered to HTML. | ||
3237 | """ | ||
3238 | bodyHTML: HTML! | ||
3239 | |||
3240 | """ | ||
3241 | The body rendered to text. | ||
3242 | """ | ||
3243 | bodyText: String! | ||
3244 | |||
3245 | """ | ||
3246 | Identifies the commit associated with the comment, if the commit exists. | ||
3247 | """ | ||
3248 | commit: Commit | ||
3249 | |||
3250 | """ | ||
3251 | Identifies the date and time when the object was created. | ||
3252 | """ | ||
3253 | createdAt: DateTime! | ||
3254 | |||
3255 | """ | ||
3256 | Check if this comment was created via an email reply. | ||
3257 | """ | ||
3258 | createdViaEmail: Boolean! | ||
3259 | |||
3260 | """ | ||
3261 | Identifies the primary key from the database. | ||
3262 | """ | ||
3263 | databaseId: Int | ||
3264 | |||
3265 | """ | ||
3266 | The actor who edited the comment. | ||
3267 | """ | ||
3268 | editor: Actor | ||
3269 | id: ID! | ||
3270 | |||
3271 | """ | ||
3272 | Check if this comment was edited and includes an edit with the creation data | ||
3273 | """ | ||
3274 | includesCreatedEdit: Boolean! | ||
3275 | |||
3276 | """ | ||
3277 | Returns whether or not a comment has been minimized. | ||
3278 | """ | ||
3279 | isMinimized: Boolean! | ||
3280 | |||
3281 | """ | ||
3282 | The moment the editor made the last edit | ||
3283 | """ | ||
3284 | lastEditedAt: DateTime | ||
3285 | |||
3286 | """ | ||
3287 | Returns why the comment was minimized. | ||
3288 | """ | ||
3289 | minimizedReason: String | ||
3290 | |||
3291 | """ | ||
3292 | Identifies the file path associated with the comment. | ||
3293 | """ | ||
3294 | path: String | ||
3295 | |||
3296 | """ | ||
3297 | Identifies the line position associated with the comment. | ||
3298 | """ | ||
3299 | position: Int | ||
3300 | |||
3301 | """ | ||
3302 | Identifies when the comment was published at. | ||
3303 | """ | ||
3304 | publishedAt: DateTime | ||
3305 | |||
3306 | """ | ||
3307 | A list of reactions grouped by content left on the subject. | ||
3308 | """ | ||
3309 | reactionGroups: [ReactionGroup!] | ||
3310 | |||
3311 | """ | ||
3312 | A list of Reactions left on the Issue. | ||
3313 | """ | ||
3314 | reactions( | ||
3315 | """ | ||
3316 | Returns the elements in the list that come after the specified cursor. | ||
3317 | """ | ||
3318 | after: String | ||
3319 | |||
3320 | """ | ||
3321 | Returns the elements in the list that come before the specified cursor. | ||
3322 | """ | ||
3323 | before: String | ||
3324 | |||
3325 | """ | ||
3326 | Allows filtering Reactions by emoji. | ||
3327 | """ | ||
3328 | content: ReactionContent | ||
3329 | |||
3330 | """ | ||
3331 | Returns the first _n_ elements from the list. | ||
3332 | """ | ||
3333 | first: Int | ||
3334 | |||
3335 | """ | ||
3336 | Returns the last _n_ elements from the list. | ||
3337 | """ | ||
3338 | last: Int | ||
3339 | |||
3340 | """ | ||
3341 | Allows specifying the order in which reactions are returned. | ||
3342 | """ | ||
3343 | orderBy: ReactionOrder | ||
3344 | ): ReactionConnection! | ||
3345 | |||
3346 | """ | ||
3347 | The repository associated with this node. | ||
3348 | """ | ||
3349 | repository: Repository! | ||
3350 | |||
3351 | """ | ||
3352 | The HTTP path permalink for this commit comment. | ||
3353 | """ | ||
3354 | resourcePath: URI! | ||
3355 | |||
3356 | """ | ||
3357 | Identifies the date and time when the object was last updated. | ||
3358 | """ | ||
3359 | updatedAt: DateTime! | ||
3360 | |||
3361 | """ | ||
3362 | The HTTP URL permalink for this commit comment. | ||
3363 | """ | ||
3364 | url: URI! | ||
3365 | |||
3366 | """ | ||
3367 | A list of edits to this content. | ||
3368 | """ | ||
3369 | userContentEdits( | ||
3370 | """ | ||
3371 | Returns the elements in the list that come after the specified cursor. | ||
3372 | """ | ||
3373 | after: String | ||
3374 | |||
3375 | """ | ||
3376 | Returns the elements in the list that come before the specified cursor. | ||
3377 | """ | ||
3378 | before: String | ||
3379 | |||
3380 | """ | ||
3381 | Returns the first _n_ elements from the list. | ||
3382 | """ | ||
3383 | first: Int | ||
3384 | |||
3385 | """ | ||
3386 | Returns the last _n_ elements from the list. | ||
3387 | """ | ||
3388 | last: Int | ||
3389 | ): UserContentEditConnection | ||
3390 | |||
3391 | """ | ||
3392 | Check if the current viewer can delete this object. | ||
3393 | """ | ||
3394 | viewerCanDelete: Boolean! | ||
3395 | |||
3396 | """ | ||
3397 | Check if the current viewer can minimize this object. | ||
3398 | """ | ||
3399 | viewerCanMinimize: Boolean! | ||
3400 | |||
3401 | """ | ||
3402 | Can user react to this subject | ||
3403 | """ | ||
3404 | viewerCanReact: Boolean! | ||
3405 | |||
3406 | """ | ||
3407 | Check if the current viewer can update this object. | ||
3408 | """ | ||
3409 | viewerCanUpdate: Boolean! | ||
3410 | |||
3411 | """ | ||
3412 | Reasons why the current viewer can not update this comment. | ||
3413 | """ | ||
3414 | viewerCannotUpdateReasons: [CommentCannotUpdateReason!]! | ||
3415 | |||
3416 | """ | ||
3417 | Did the viewer author this comment. | ||
3418 | """ | ||
3419 | viewerDidAuthor: Boolean! | ||
3420 | } | ||
3421 | |||
3422 | """ | ||
3423 | The connection type for CommitComment. | ||
3424 | """ | ||
3425 | type CommitCommentConnection { | ||
3426 | """ | ||
3427 | A list of edges. | ||
3428 | """ | ||
3429 | edges: [CommitCommentEdge] | ||
3430 | |||
3431 | """ | ||
3432 | A list of nodes. | ||
3433 | """ | ||
3434 | nodes: [CommitComment] | ||
3435 | |||
3436 | """ | ||
3437 | Information to aid in pagination. | ||
3438 | """ | ||
3439 | pageInfo: PageInfo! | ||
3440 | |||
3441 | """ | ||
3442 | Identifies the total count of items in the connection. | ||
3443 | """ | ||
3444 | totalCount: Int! | ||
3445 | } | ||
3446 | |||
3447 | """ | ||
3448 | An edge in a connection. | ||
3449 | """ | ||
3450 | type CommitCommentEdge { | ||
3451 | """ | ||
3452 | A cursor for use in pagination. | ||
3453 | """ | ||
3454 | cursor: String! | ||
3455 | |||
3456 | """ | ||
3457 | The item at the end of the edge. | ||
3458 | """ | ||
3459 | node: CommitComment | ||
3460 | } | ||
3461 | |||
3462 | """ | ||
3463 | A thread of comments on a commit. | ||
3464 | """ | ||
3465 | type CommitCommentThread implements Node & RepositoryNode { | ||
3466 | """ | ||
3467 | The comments that exist in this thread. | ||
3468 | """ | ||
3469 | comments( | ||
3470 | """ | ||
3471 | Returns the elements in the list that come after the specified cursor. | ||
3472 | """ | ||
3473 | after: String | ||
3474 | |||
3475 | """ | ||
3476 | Returns the elements in the list that come before the specified cursor. | ||
3477 | """ | ||
3478 | before: String | ||
3479 | |||
3480 | """ | ||
3481 | Returns the first _n_ elements from the list. | ||
3482 | """ | ||
3483 | first: Int | ||
3484 | |||
3485 | """ | ||
3486 | Returns the last _n_ elements from the list. | ||
3487 | """ | ||
3488 | last: Int | ||
3489 | ): CommitCommentConnection! | ||
3490 | |||
3491 | """ | ||
3492 | The commit the comments were made on. | ||
3493 | """ | ||
3494 | commit: Commit | ||
3495 | id: ID! | ||
3496 | |||
3497 | """ | ||
3498 | The file the comments were made on. | ||
3499 | """ | ||
3500 | path: String | ||
3501 | |||
3502 | """ | ||
3503 | The position in the diff for the commit that the comment was made on. | ||
3504 | """ | ||
3505 | position: Int | ||
3506 | |||
3507 | """ | ||
3508 | The repository associated with this node. | ||
3509 | """ | ||
3510 | repository: Repository! | ||
3511 | } | ||
3512 | |||
3513 | """ | ||
3514 | The connection type for Commit. | ||
3515 | """ | ||
3516 | type CommitConnection { | ||
3517 | """ | ||
3518 | A list of edges. | ||
3519 | """ | ||
3520 | edges: [CommitEdge] | ||
3521 | |||
3522 | """ | ||
3523 | A list of nodes. | ||
3524 | """ | ||
3525 | nodes: [Commit] | ||
3526 | |||
3527 | """ | ||
3528 | Information to aid in pagination. | ||
3529 | """ | ||
3530 | pageInfo: PageInfo! | ||
3531 | |||
3532 | """ | ||
3533 | Identifies the total count of items in the connection. | ||
3534 | """ | ||
3535 | totalCount: Int! | ||
3536 | } | ||
3537 | |||
3538 | """ | ||
3539 | Ordering options for commit contribution connections. | ||
3540 | """ | ||
3541 | input CommitContributionOrder { | ||
3542 | """ | ||
3543 | The ordering direction. | ||
3544 | """ | ||
3545 | direction: OrderDirection! | ||
3546 | |||
3547 | """ | ||
3548 | The field by which to order commit contributions. | ||
3549 | """ | ||
3550 | field: CommitContributionOrderField! | ||
3551 | } | ||
3552 | |||
3553 | """ | ||
3554 | Properties by which commit contribution connections can be ordered. | ||
3555 | """ | ||
3556 | enum CommitContributionOrderField { | ||
3557 | """ | ||
3558 | Order commit contributions by how many commits they represent. | ||
3559 | """ | ||
3560 | COMMIT_COUNT | ||
3561 | |||
3562 | """ | ||
3563 | Order commit contributions by when they were made. | ||
3564 | """ | ||
3565 | OCCURRED_AT | ||
3566 | } | ||
3567 | |||
3568 | """ | ||
3569 | This aggregates commits made by a user within one repository. | ||
3570 | """ | ||
3571 | type CommitContributionsByRepository { | ||
3572 | """ | ||
3573 | The commit contributions, each representing a day. | ||
3574 | """ | ||
3575 | contributions( | ||
3576 | """ | ||
3577 | Returns the elements in the list that come after the specified cursor. | ||
3578 | """ | ||
3579 | after: String | ||
3580 | |||
3581 | """ | ||
3582 | Returns the elements in the list that come before the specified cursor. | ||
3583 | """ | ||
3584 | before: String | ||
3585 | |||
3586 | """ | ||
3587 | Returns the first _n_ elements from the list. | ||
3588 | """ | ||
3589 | first: Int | ||
3590 | |||
3591 | """ | ||
3592 | Returns the last _n_ elements from the list. | ||
3593 | """ | ||
3594 | last: Int | ||
3595 | |||
3596 | """ | ||
3597 | Ordering options for commit contributions returned from the connection. | ||
3598 | """ | ||
3599 | orderBy: CommitContributionOrder = {field: OCCURRED_AT, direction: DESC} | ||
3600 | ): CreatedCommitContributionConnection! | ||
3601 | |||
3602 | """ | ||
3603 | The repository in which the commits were made. | ||
3604 | """ | ||
3605 | repository: Repository! | ||
3606 | |||
3607 | """ | ||
3608 | The HTTP path for the user's commits to the repository in this time range. | ||
3609 | """ | ||
3610 | resourcePath: URI! | ||
3611 | |||
3612 | """ | ||
3613 | The HTTP URL for the user's commits to the repository in this time range. | ||
3614 | """ | ||
3615 | url: URI! | ||
3616 | } | ||
3617 | |||
3618 | """ | ||
3619 | An edge in a connection. | ||
3620 | """ | ||
3621 | type CommitEdge { | ||
3622 | """ | ||
3623 | A cursor for use in pagination. | ||
3624 | """ | ||
3625 | cursor: String! | ||
3626 | |||
3627 | """ | ||
3628 | The item at the end of the edge. | ||
3629 | """ | ||
3630 | node: Commit | ||
3631 | } | ||
3632 | |||
3633 | """ | ||
3634 | The connection type for Commit. | ||
3635 | """ | ||
3636 | type CommitHistoryConnection { | ||
3637 | """ | ||
3638 | A list of edges. | ||
3639 | """ | ||
3640 | edges: [CommitEdge] | ||
3641 | |||
3642 | """ | ||
3643 | A list of nodes. | ||
3644 | """ | ||
3645 | nodes: [Commit] | ||
3646 | |||
3647 | """ | ||
3648 | Information to aid in pagination. | ||
3649 | """ | ||
3650 | pageInfo: PageInfo! | ||
3651 | |||
3652 | """ | ||
3653 | Identifies the total count of items in the connection. | ||
3654 | """ | ||
3655 | totalCount: Int! | ||
3656 | } | ||
3657 | |||
3658 | """ | ||
3659 | Represents a 'connected' event on a given issue or pull request. | ||
3660 | """ | ||
3661 | type ConnectedEvent implements Node { | ||
3662 | """ | ||
3663 | Identifies the actor who performed the event. | ||
3664 | """ | ||
3665 | actor: Actor | ||
3666 | |||
3667 | """ | ||
3668 | Identifies the date and time when the object was created. | ||
3669 | """ | ||
3670 | createdAt: DateTime! | ||
3671 | id: ID! | ||
3672 | |||
3673 | """ | ||
3674 | Reference originated in a different repository. | ||
3675 | """ | ||
3676 | isCrossRepository: Boolean! | ||
3677 | |||
3678 | """ | ||
3679 | Issue or pull request that made the reference. | ||
3680 | """ | ||
3681 | source: ReferencedSubject! | ||
3682 | |||
3683 | """ | ||
3684 | Issue or pull request which was connected. | ||
3685 | """ | ||
3686 | subject: ReferencedSubject! | ||
3687 | } | ||
3688 | |||
3689 | """ | ||
3690 | A content attachment | ||
3691 | """ | ||
3692 | type ContentAttachment { | ||
3693 | """ | ||
3694 | The body text of the content attachment. This parameter supports markdown. | ||
3695 | """ | ||
3696 | body: String! | ||
3697 | |||
3698 | """ | ||
3699 | The content reference that the content attachment is attached to. | ||
3700 | """ | ||
3701 | contentReference: ContentReference! | ||
3702 | |||
3703 | """ | ||
3704 | Identifies the primary key from the database. | ||
3705 | """ | ||
3706 | databaseId: Int! | ||
3707 | id: ID! | ||
3708 | |||
3709 | """ | ||
3710 | The title of the content attachment. | ||
3711 | """ | ||
3712 | title: String! | ||
3713 | } | ||
3714 | |||
3715 | """ | ||
3716 | A content reference | ||
3717 | """ | ||
3718 | type ContentReference { | ||
3719 | """ | ||
3720 | Identifies the primary key from the database. | ||
3721 | """ | ||
3722 | databaseId: Int! | ||
3723 | id: ID! | ||
3724 | |||
3725 | """ | ||
3726 | The reference of the content reference. | ||
3727 | """ | ||
3728 | reference: String! | ||
3729 | } | ||
3730 | |||
3731 | """ | ||
3732 | Represents a contribution a user made on GitHub, such as opening an issue. | ||
3733 | """ | ||
3734 | interface Contribution { | ||
3735 | """ | ||
3736 | Whether this contribution is associated with a record you do not have access to. For | ||
3737 | example, your own 'first issue' contribution may have been made on a repository you can no | ||
3738 | longer access. | ||
3739 | """ | ||
3740 | isRestricted: Boolean! | ||
3741 | |||
3742 | """ | ||
3743 | When this contribution was made. | ||
3744 | """ | ||
3745 | occurredAt: DateTime! | ||
3746 | |||
3747 | """ | ||
3748 | The HTTP path for this contribution. | ||
3749 | """ | ||
3750 | resourcePath: URI! | ||
3751 | |||
3752 | """ | ||
3753 | The HTTP URL for this contribution. | ||
3754 | """ | ||
3755 | url: URI! | ||
3756 | |||
3757 | """ | ||
3758 | The user who made this contribution. | ||
3759 | """ | ||
3760 | user: User! | ||
3761 | } | ||
3762 | |||
3763 | """ | ||
3764 | A calendar of contributions made on GitHub by a user. | ||
3765 | """ | ||
3766 | type ContributionCalendar { | ||
3767 | """ | ||
3768 | A list of hex color codes used in this calendar. The darker the color, the more contributions it represents. | ||
3769 | """ | ||
3770 | colors: [String!]! | ||
3771 | |||
3772 | """ | ||
3773 | Determine if the color set was chosen because it's currently Halloween. | ||
3774 | """ | ||
3775 | isHalloween: Boolean! | ||
3776 | |||
3777 | """ | ||
3778 | A list of the months of contributions in this calendar. | ||
3779 | """ | ||
3780 | months: [ContributionCalendarMonth!]! | ||
3781 | |||
3782 | """ | ||
3783 | The count of total contributions in the calendar. | ||
3784 | """ | ||
3785 | totalContributions: Int! | ||
3786 | |||
3787 | """ | ||
3788 | A list of the weeks of contributions in this calendar. | ||
3789 | """ | ||
3790 | weeks: [ContributionCalendarWeek!]! | ||
3791 | } | ||
3792 | |||
3793 | """ | ||
3794 | Represents a single day of contributions on GitHub by a user. | ||
3795 | """ | ||
3796 | type ContributionCalendarDay { | ||
3797 | """ | ||
3798 | The hex color code that represents how many contributions were made on this day compared to others in the calendar. | ||
3799 | """ | ||
3800 | color: String! | ||
3801 | |||
3802 | """ | ||
3803 | How many contributions were made by the user on this day. | ||
3804 | """ | ||
3805 | contributionCount: Int! | ||
3806 | |||
3807 | """ | ||
3808 | The day this square represents. | ||
3809 | """ | ||
3810 | date: Date! | ||
3811 | |||
3812 | """ | ||
3813 | A number representing which day of the week this square represents, e.g., 1 is Monday. | ||
3814 | """ | ||
3815 | weekday: Int! | ||
3816 | } | ||
3817 | |||
3818 | """ | ||
3819 | A month of contributions in a user's contribution graph. | ||
3820 | """ | ||
3821 | type ContributionCalendarMonth { | ||
3822 | """ | ||
3823 | The date of the first day of this month. | ||
3824 | """ | ||
3825 | firstDay: Date! | ||
3826 | |||
3827 | """ | ||
3828 | The name of the month. | ||
3829 | """ | ||
3830 | name: String! | ||
3831 | |||
3832 | """ | ||
3833 | How many weeks started in this month. | ||
3834 | """ | ||
3835 | totalWeeks: Int! | ||
3836 | |||
3837 | """ | ||
3838 | The year the month occurred in. | ||
3839 | """ | ||
3840 | year: Int! | ||
3841 | } | ||
3842 | |||
3843 | """ | ||
3844 | A week of contributions in a user's contribution graph. | ||
3845 | """ | ||
3846 | type ContributionCalendarWeek { | ||
3847 | """ | ||
3848 | The days of contributions in this week. | ||
3849 | """ | ||
3850 | contributionDays: [ContributionCalendarDay!]! | ||
3851 | |||
3852 | """ | ||
3853 | The date of the earliest square in this week. | ||
3854 | """ | ||
3855 | firstDay: Date! | ||
3856 | } | ||
3857 | |||
3858 | """ | ||
3859 | Ordering options for contribution connections. | ||
3860 | """ | ||
3861 | input ContributionOrder { | ||
3862 | """ | ||
3863 | The ordering direction. | ||
3864 | """ | ||
3865 | direction: OrderDirection! | ||
3866 | } | ||
3867 | |||
3868 | """ | ||
3869 | A contributions collection aggregates contributions such as opened issues and commits created by a user. | ||
3870 | """ | ||
3871 | type ContributionsCollection { | ||
3872 | """ | ||
3873 | Commit contributions made by the user, grouped by repository. | ||
3874 | """ | ||
3875 | commitContributionsByRepository( | ||
3876 | """ | ||
3877 | How many repositories should be included. | ||
3878 | """ | ||
3879 | maxRepositories: Int = 25 | ||
3880 | ): [CommitContributionsByRepository!]! | ||
3881 | |||
3882 | """ | ||
3883 | A calendar of this user's contributions on GitHub. | ||
3884 | """ | ||
3885 | contributionCalendar: ContributionCalendar! | ||
3886 | |||
3887 | """ | ||
3888 | The years the user has been making contributions with the most recent year first. | ||
3889 | """ | ||
3890 | contributionYears: [Int!]! | ||
3891 | |||
3892 | """ | ||
3893 | Determine if this collection's time span ends in the current month. | ||
3894 | """ | ||
3895 | doesEndInCurrentMonth: Boolean! | ||
3896 | |||
3897 | """ | ||
3898 | The date of the first restricted contribution the user made in this time | ||
3899 | period. Can only be non-null when the user has enabled private contribution counts. | ||
3900 | """ | ||
3901 | earliestRestrictedContributionDate: Date | ||
3902 | |||
3903 | """ | ||
3904 | The ending date and time of this collection. | ||
3905 | """ | ||
3906 | endedAt: DateTime! | ||
3907 | |||
3908 | """ | ||
3909 | The first issue the user opened on GitHub. This will be null if that issue was | ||
3910 | opened outside the collection's time range and ignoreTimeRange is false. If | ||
3911 | the issue is not visible but the user has opted to show private contributions, | ||
3912 | a RestrictedContribution will be returned. | ||
3913 | """ | ||
3914 | firstIssueContribution: CreatedIssueOrRestrictedContribution | ||
3915 | |||
3916 | """ | ||
3917 | The first pull request the user opened on GitHub. This will be null if that | ||
3918 | pull request was opened outside the collection's time range and | ||
3919 | ignoreTimeRange is not true. If the pull request is not visible but the user | ||
3920 | has opted to show private contributions, a RestrictedContribution will be returned. | ||
3921 | """ | ||
3922 | firstPullRequestContribution: CreatedPullRequestOrRestrictedContribution | ||
3923 | |||
3924 | """ | ||
3925 | The first repository the user created on GitHub. This will be null if that | ||
3926 | first repository was created outside the collection's time range and | ||
3927 | ignoreTimeRange is false. If the repository is not visible, then a | ||
3928 | RestrictedContribution is returned. | ||
3929 | """ | ||
3930 | firstRepositoryContribution: CreatedRepositoryOrRestrictedContribution | ||
3931 | |||
3932 | """ | ||
3933 | Does the user have any more activity in the timeline that occurred prior to the collection's time range? | ||
3934 | """ | ||
3935 | hasActivityInThePast: Boolean! | ||
3936 | |||
3937 | """ | ||
3938 | Determine if there are any contributions in this collection. | ||
3939 | """ | ||
3940 | hasAnyContributions: Boolean! | ||
3941 | |||
3942 | """ | ||
3943 | Determine if the user made any contributions in this time frame whose details | ||
3944 | are not visible because they were made in a private repository. Can only be | ||
3945 | true if the user enabled private contribution counts. | ||
3946 | """ | ||
3947 | hasAnyRestrictedContributions: Boolean! | ||
3948 | |||
3949 | """ | ||
3950 | Whether or not the collector's time span is all within the same day. | ||
3951 | """ | ||
3952 | isSingleDay: Boolean! | ||
3953 | |||
3954 | """ | ||
3955 | A list of issues the user opened. | ||
3956 | """ | ||
3957 | issueContributions( | ||
3958 | """ | ||
3959 | Returns the elements in the list that come after the specified cursor. | ||
3960 | """ | ||
3961 | after: String | ||
3962 | |||
3963 | """ | ||
3964 | Returns the elements in the list that come before the specified cursor. | ||
3965 | """ | ||
3966 | before: String | ||
3967 | |||
3968 | """ | ||
3969 | Should the user's first issue ever be excluded from the result. | ||
3970 | """ | ||
3971 | excludeFirst: Boolean = false | ||
3972 | |||
3973 | """ | ||
3974 | Should the user's most commented issue be excluded from the result. | ||
3975 | """ | ||
3976 | excludePopular: Boolean = false | ||
3977 | |||
3978 | """ | ||
3979 | Returns the first _n_ elements from the list. | ||
3980 | """ | ||
3981 | first: Int | ||
3982 | |||
3983 | """ | ||
3984 | Returns the last _n_ elements from the list. | ||
3985 | """ | ||
3986 | last: Int | ||
3987 | |||
3988 | """ | ||
3989 | Ordering options for contributions returned from the connection. | ||
3990 | """ | ||
3991 | orderBy: ContributionOrder = {direction: DESC} | ||
3992 | ): CreatedIssueContributionConnection! | ||
3993 | |||
3994 | """ | ||
3995 | Issue contributions made by the user, grouped by repository. | ||
3996 | """ | ||
3997 | issueContributionsByRepository( | ||
3998 | """ | ||
3999 | Should the user's first issue ever be excluded from the result. | ||
4000 | """ | ||
4001 | excludeFirst: Boolean = false | ||
4002 | |||
4003 | """ | ||
4004 | Should the user's most commented issue be excluded from the result. | ||
4005 | """ | ||
4006 | excludePopular: Boolean = false | ||
4007 | |||
4008 | """ | ||
4009 | How many repositories should be included. | ||
4010 | """ | ||
4011 | maxRepositories: Int = 25 | ||
4012 | ): [IssueContributionsByRepository!]! | ||
4013 | |||
4014 | """ | ||
4015 | When the user signed up for GitHub. This will be null if that sign up date | ||
4016 | falls outside the collection's time range and ignoreTimeRange is false. | ||
4017 | """ | ||
4018 | joinedGitHubContribution: JoinedGitHubContribution | ||
4019 | |||
4020 | """ | ||
4021 | The date of the most recent restricted contribution the user made in this time | ||
4022 | period. Can only be non-null when the user has enabled private contribution counts. | ||
4023 | """ | ||
4024 | latestRestrictedContributionDate: Date | ||
4025 | |||
4026 | """ | ||
4027 | When this collection's time range does not include any activity from the user, use this | ||
4028 | to get a different collection from an earlier time range that does have activity. | ||
4029 | """ | ||
4030 | mostRecentCollectionWithActivity: ContributionsCollection | ||
4031 | |||
4032 | """ | ||
4033 | Returns a different contributions collection from an earlier time range than this one | ||
4034 | that does not have any contributions. | ||
4035 | """ | ||
4036 | mostRecentCollectionWithoutActivity: ContributionsCollection | ||
4037 | |||
4038 | """ | ||
4039 | The issue the user opened on GitHub that received the most comments in the specified | ||
4040 | time frame. | ||
4041 | """ | ||
4042 | popularIssueContribution: CreatedIssueContribution | ||
4043 | |||
4044 | """ | ||
4045 | The pull request the user opened on GitHub that received the most comments in the | ||
4046 | specified time frame. | ||
4047 | """ | ||
4048 | popularPullRequestContribution: CreatedPullRequestContribution | ||
4049 | |||
4050 | """ | ||
4051 | Pull request contributions made by the user. | ||
4052 | """ | ||
4053 | pullRequestContributions( | ||
4054 | """ | ||
4055 | Returns the elements in the list that come after the specified cursor. | ||
4056 | """ | ||
4057 | after: String | ||
4058 | |||
4059 | """ | ||
4060 | Returns the elements in the list that come before the specified cursor. | ||
4061 | """ | ||
4062 | before: String | ||
4063 | |||
4064 | """ | ||
4065 | Should the user's first pull request ever be excluded from the result. | ||
4066 | """ | ||
4067 | excludeFirst: Boolean = false | ||
4068 | |||
4069 | """ | ||
4070 | Should the user's most commented pull request be excluded from the result. | ||
4071 | """ | ||
4072 | excludePopular: Boolean = false | ||
4073 | |||
4074 | """ | ||
4075 | Returns the first _n_ elements from the list. | ||
4076 | """ | ||
4077 | first: Int | ||
4078 | |||
4079 | """ | ||
4080 | Returns the last _n_ elements from the list. | ||
4081 | """ | ||
4082 | last: Int | ||
4083 | |||
4084 | """ | ||
4085 | Ordering options for contributions returned from the connection. | ||
4086 | """ | ||
4087 | orderBy: ContributionOrder = {direction: DESC} | ||
4088 | ): CreatedPullRequestContributionConnection! | ||
4089 | |||
4090 | """ | ||
4091 | Pull request contributions made by the user, grouped by repository. | ||
4092 | """ | ||
4093 | pullRequestContributionsByRepository( | ||
4094 | """ | ||
4095 | Should the user's first pull request ever be excluded from the result. | ||
4096 | """ | ||
4097 | excludeFirst: Boolean = false | ||
4098 | |||
4099 | """ | ||
4100 | Should the user's most commented pull request be excluded from the result. | ||
4101 | """ | ||
4102 | excludePopular: Boolean = false | ||
4103 | |||
4104 | """ | ||
4105 | How many repositories should be included. | ||
4106 | """ | ||
4107 | maxRepositories: Int = 25 | ||
4108 | ): [PullRequestContributionsByRepository!]! | ||
4109 | |||
4110 | """ | ||
4111 | Pull request review contributions made by the user. | ||
4112 | """ | ||
4113 | pullRequestReviewContributions( | ||
4114 | """ | ||
4115 | Returns the elements in the list that come after the specified cursor. | ||
4116 | """ | ||
4117 | after: String | ||
4118 | |||
4119 | """ | ||
4120 | Returns the elements in the list that come before the specified cursor. | ||
4121 | """ | ||
4122 | before: String | ||
4123 | |||
4124 | """ | ||
4125 | Returns the first _n_ elements from the list. | ||
4126 | """ | ||
4127 | first: Int | ||
4128 | |||
4129 | """ | ||
4130 | Returns the last _n_ elements from the list. | ||
4131 | """ | ||
4132 | last: Int | ||
4133 | |||
4134 | """ | ||
4135 | Ordering options for contributions returned from the connection. | ||
4136 | """ | ||
4137 | orderBy: ContributionOrder = {direction: DESC} | ||
4138 | ): CreatedPullRequestReviewContributionConnection! | ||
4139 | |||
4140 | """ | ||
4141 | Pull request review contributions made by the user, grouped by repository. | ||
4142 | """ | ||
4143 | pullRequestReviewContributionsByRepository( | ||
4144 | """ | ||
4145 | How many repositories should be included. | ||
4146 | """ | ||
4147 | maxRepositories: Int = 25 | ||
4148 | ): [PullRequestReviewContributionsByRepository!]! | ||
4149 | |||
4150 | """ | ||
4151 | A list of repositories owned by the user that the user created in this time range. | ||
4152 | """ | ||
4153 | repositoryContributions( | ||
4154 | """ | ||
4155 | Returns the elements in the list that come after the specified cursor. | ||
4156 | """ | ||
4157 | after: String | ||
4158 | |||
4159 | """ | ||
4160 | Returns the elements in the list that come before the specified cursor. | ||
4161 | """ | ||
4162 | before: String | ||
4163 | |||
4164 | """ | ||
4165 | Should the user's first repository ever be excluded from the result. | ||
4166 | """ | ||
4167 | excludeFirst: Boolean = false | ||
4168 | |||
4169 | """ | ||
4170 | Returns the first _n_ elements from the list. | ||
4171 | """ | ||
4172 | first: Int | ||
4173 | |||
4174 | """ | ||
4175 | Returns the last _n_ elements from the list. | ||
4176 | """ | ||
4177 | last: Int | ||
4178 | |||
4179 | """ | ||
4180 | Ordering options for contributions returned from the connection. | ||
4181 | """ | ||
4182 | orderBy: ContributionOrder = {direction: DESC} | ||
4183 | ): CreatedRepositoryContributionConnection! | ||
4184 | |||
4185 | """ | ||
4186 | A count of contributions made by the user that the viewer cannot access. Only | ||
4187 | non-zero when the user has chosen to share their private contribution counts. | ||
4188 | """ | ||
4189 | restrictedContributionsCount: Int! | ||
4190 | |||
4191 | """ | ||
4192 | The beginning date and time of this collection. | ||
4193 | """ | ||
4194 | startedAt: DateTime! | ||
4195 | |||
4196 | """ | ||
4197 | How many commits were made by the user in this time span. | ||
4198 | """ | ||
4199 | totalCommitContributions: Int! | ||
4200 | |||
4201 | """ | ||
4202 | How many issues the user opened. | ||
4203 | """ | ||
4204 | totalIssueContributions( | ||
4205 | """ | ||
4206 | Should the user's first issue ever be excluded from this count. | ||
4207 | """ | ||
4208 | excludeFirst: Boolean = false | ||
4209 | |||
4210 | """ | ||
4211 | Should the user's most commented issue be excluded from this count. | ||
4212 | """ | ||
4213 | excludePopular: Boolean = false | ||
4214 | ): Int! | ||
4215 | |||
4216 | """ | ||
4217 | How many pull requests the user opened. | ||
4218 | """ | ||
4219 | totalPullRequestContributions( | ||
4220 | """ | ||
4221 | Should the user's first pull request ever be excluded from this count. | ||
4222 | """ | ||
4223 | excludeFirst: Boolean = false | ||
4224 | |||
4225 | """ | ||
4226 | Should the user's most commented pull request be excluded from this count. | ||
4227 | """ | ||
4228 | excludePopular: Boolean = false | ||
4229 | ): Int! | ||
4230 | |||
4231 | """ | ||
4232 | How many pull request reviews the user left. | ||
4233 | """ | ||
4234 | totalPullRequestReviewContributions: Int! | ||
4235 | |||
4236 | """ | ||
4237 | How many different repositories the user committed to. | ||
4238 | """ | ||
4239 | totalRepositoriesWithContributedCommits: Int! | ||
4240 | |||
4241 | """ | ||
4242 | How many different repositories the user opened issues in. | ||
4243 | """ | ||
4244 | totalRepositoriesWithContributedIssues( | ||
4245 | """ | ||
4246 | Should the user's first issue ever be excluded from this count. | ||
4247 | """ | ||
4248 | excludeFirst: Boolean = false | ||
4249 | |||
4250 | """ | ||
4251 | Should the user's most commented issue be excluded from this count. | ||
4252 | """ | ||
4253 | excludePopular: Boolean = false | ||
4254 | ): Int! | ||
4255 | |||
4256 | """ | ||
4257 | How many different repositories the user left pull request reviews in. | ||
4258 | """ | ||
4259 | totalRepositoriesWithContributedPullRequestReviews: Int! | ||
4260 | |||
4261 | """ | ||
4262 | How many different repositories the user opened pull requests in. | ||
4263 | """ | ||
4264 | totalRepositoriesWithContributedPullRequests( | ||
4265 | """ | ||
4266 | Should the user's first pull request ever be excluded from this count. | ||
4267 | """ | ||
4268 | excludeFirst: Boolean = false | ||
4269 | |||
4270 | """ | ||
4271 | Should the user's most commented pull request be excluded from this count. | ||
4272 | """ | ||
4273 | excludePopular: Boolean = false | ||
4274 | ): Int! | ||
4275 | |||
4276 | """ | ||
4277 | How many repositories the user created. | ||
4278 | """ | ||
4279 | totalRepositoryContributions( | ||
4280 | """ | ||
4281 | Should the user's first repository ever be excluded from this count. | ||
4282 | """ | ||
4283 | excludeFirst: Boolean = false | ||
4284 | ): Int! | ||
4285 | |||
4286 | """ | ||
4287 | The user who made the contributions in this collection. | ||
4288 | """ | ||
4289 | user: User! | ||
4290 | } | ||
4291 | |||
4292 | """ | ||
4293 | Autogenerated input type of ConvertProjectCardNoteToIssue | ||
4294 | """ | ||
4295 | input ConvertProjectCardNoteToIssueInput { | ||
4296 | """ | ||
4297 | The body of the newly created issue. | ||
4298 | """ | ||
4299 | body: String | ||
4300 | |||
4301 | """ | ||
4302 | A unique identifier for the client performing the mutation. | ||
4303 | """ | ||
4304 | clientMutationId: String | ||
4305 | |||
4306 | """ | ||
4307 | The ProjectCard ID to convert. | ||
4308 | """ | ||
4309 | projectCardId: ID! @possibleTypes(concreteTypes: ["ProjectCard"]) | ||
4310 | |||
4311 | """ | ||
4312 | The ID of the repository to create the issue in. | ||
4313 | """ | ||
4314 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
4315 | |||
4316 | """ | ||
4317 | The title of the newly created issue. Defaults to the card's note text. | ||
4318 | """ | ||
4319 | title: String | ||
4320 | } | ||
4321 | |||
4322 | """ | ||
4323 | Autogenerated return type of ConvertProjectCardNoteToIssue | ||
4324 | """ | ||
4325 | type ConvertProjectCardNoteToIssuePayload { | ||
4326 | """ | ||
4327 | A unique identifier for the client performing the mutation. | ||
4328 | """ | ||
4329 | clientMutationId: String | ||
4330 | |||
4331 | """ | ||
4332 | The updated ProjectCard. | ||
4333 | """ | ||
4334 | projectCard: ProjectCard | ||
4335 | } | ||
4336 | |||
4337 | """ | ||
4338 | Represents a 'convert_to_draft' event on a given pull request. | ||
4339 | """ | ||
4340 | type ConvertToDraftEvent implements Node & UniformResourceLocatable { | ||
4341 | """ | ||
4342 | Identifies the actor who performed the event. | ||
4343 | """ | ||
4344 | actor: Actor | ||
4345 | |||
4346 | """ | ||
4347 | Identifies the date and time when the object was created. | ||
4348 | """ | ||
4349 | createdAt: DateTime! | ||
4350 | id: ID! | ||
4351 | |||
4352 | """ | ||
4353 | PullRequest referenced by event. | ||
4354 | """ | ||
4355 | pullRequest: PullRequest! | ||
4356 | |||
4357 | """ | ||
4358 | The HTTP path for this convert to draft event. | ||
4359 | """ | ||
4360 | resourcePath: URI! | ||
4361 | |||
4362 | """ | ||
4363 | The HTTP URL for this convert to draft event. | ||
4364 | """ | ||
4365 | url: URI! | ||
4366 | } | ||
4367 | |||
4368 | """ | ||
4369 | Represents a 'converted_note_to_issue' event on a given issue or pull request. | ||
4370 | """ | ||
4371 | type ConvertedNoteToIssueEvent implements Node { | ||
4372 | """ | ||
4373 | Identifies the actor who performed the event. | ||
4374 | """ | ||
4375 | actor: Actor | ||
4376 | |||
4377 | """ | ||
4378 | Identifies the date and time when the object was created. | ||
4379 | """ | ||
4380 | createdAt: DateTime! | ||
4381 | |||
4382 | """ | ||
4383 | Identifies the primary key from the database. | ||
4384 | """ | ||
4385 | databaseId: Int | ||
4386 | id: ID! | ||
4387 | |||
4388 | """ | ||
4389 | Project referenced by event. | ||
4390 | """ | ||
4391 | project: Project @preview(toggledBy: "starfox-preview") | ||
4392 | |||
4393 | """ | ||
4394 | Project card referenced by this project event. | ||
4395 | """ | ||
4396 | projectCard: ProjectCard @preview(toggledBy: "starfox-preview") | ||
4397 | |||
4398 | """ | ||
4399 | Column name referenced by this project event. | ||
4400 | """ | ||
4401 | projectColumnName: String! @preview(toggledBy: "starfox-preview") | ||
4402 | } | ||
4403 | |||
4404 | """ | ||
4405 | Autogenerated input type of CreateBranchProtectionRule | ||
4406 | """ | ||
4407 | input CreateBranchProtectionRuleInput { | ||
4408 | """ | ||
4409 | A unique identifier for the client performing the mutation. | ||
4410 | """ | ||
4411 | clientMutationId: String | ||
4412 | |||
4413 | """ | ||
4414 | Will new commits pushed to matching branches dismiss pull request review approvals. | ||
4415 | """ | ||
4416 | dismissesStaleReviews: Boolean | ||
4417 | |||
4418 | """ | ||
4419 | Can admins overwrite branch protection. | ||
4420 | """ | ||
4421 | isAdminEnforced: Boolean | ||
4422 | |||
4423 | """ | ||
4424 | The glob-like pattern used to determine matching branches. | ||
4425 | """ | ||
4426 | pattern: String! | ||
4427 | |||
4428 | """ | ||
4429 | A list of User, Team or App IDs allowed to push to matching branches. | ||
4430 | """ | ||
4431 | pushActorIds: [ID!] | ||
4432 | |||
4433 | """ | ||
4434 | The global relay id of the repository in which a new branch protection rule should be created in. | ||
4435 | """ | ||
4436 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
4437 | |||
4438 | """ | ||
4439 | Number of approving reviews required to update matching branches. | ||
4440 | """ | ||
4441 | requiredApprovingReviewCount: Int | ||
4442 | |||
4443 | """ | ||
4444 | List of required status check contexts that must pass for commits to be accepted to matching branches. | ||
4445 | """ | ||
4446 | requiredStatusCheckContexts: [String!] | ||
4447 | |||
4448 | """ | ||
4449 | Are approving reviews required to update matching branches. | ||
4450 | """ | ||
4451 | requiresApprovingReviews: Boolean | ||
4452 | |||
4453 | """ | ||
4454 | Are reviews from code owners required to update matching branches. | ||
4455 | """ | ||
4456 | requiresCodeOwnerReviews: Boolean | ||
4457 | |||
4458 | """ | ||
4459 | Are commits required to be signed. | ||
4460 | """ | ||
4461 | requiresCommitSignatures: Boolean | ||
4462 | |||
4463 | """ | ||
4464 | Are status checks required to update matching branches. | ||
4465 | """ | ||
4466 | requiresStatusChecks: Boolean | ||
4467 | |||
4468 | """ | ||
4469 | Are branches required to be up to date before merging. | ||
4470 | """ | ||
4471 | requiresStrictStatusChecks: Boolean | ||
4472 | |||
4473 | """ | ||
4474 | Is pushing to matching branches restricted. | ||
4475 | """ | ||
4476 | restrictsPushes: Boolean | ||
4477 | |||
4478 | """ | ||
4479 | Is dismissal of pull request reviews restricted. | ||
4480 | """ | ||
4481 | restrictsReviewDismissals: Boolean | ||
4482 | |||
4483 | """ | ||
4484 | A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches. | ||
4485 | """ | ||
4486 | reviewDismissalActorIds: [ID!] | ||
4487 | } | ||
4488 | |||
4489 | """ | ||
4490 | Autogenerated return type of CreateBranchProtectionRule | ||
4491 | """ | ||
4492 | type CreateBranchProtectionRulePayload { | ||
4493 | """ | ||
4494 | The newly created BranchProtectionRule. | ||
4495 | """ | ||
4496 | branchProtectionRule: BranchProtectionRule | ||
4497 | |||
4498 | """ | ||
4499 | A unique identifier for the client performing the mutation. | ||
4500 | """ | ||
4501 | clientMutationId: String | ||
4502 | } | ||
4503 | |||
4504 | """ | ||
4505 | Autogenerated input type of CreateCheckRun | ||
4506 | """ | ||
4507 | input CreateCheckRunInput @preview(toggledBy: "antiope-preview") { | ||
4508 | """ | ||
4509 | Possible further actions the integrator can perform, which a user may trigger. | ||
4510 | """ | ||
4511 | actions: [CheckRunAction!] | ||
4512 | |||
4513 | """ | ||
4514 | A unique identifier for the client performing the mutation. | ||
4515 | """ | ||
4516 | clientMutationId: String | ||
4517 | |||
4518 | """ | ||
4519 | The time that the check run finished. | ||
4520 | """ | ||
4521 | completedAt: DateTime | ||
4522 | |||
4523 | """ | ||
4524 | The final conclusion of the check. | ||
4525 | """ | ||
4526 | conclusion: CheckConclusionState | ||
4527 | |||
4528 | """ | ||
4529 | The URL of the integrator's site that has the full details of the check. | ||
4530 | """ | ||
4531 | detailsUrl: URI | ||
4532 | |||
4533 | """ | ||
4534 | A reference for the run on the integrator's system. | ||
4535 | """ | ||
4536 | externalId: String | ||
4537 | |||
4538 | """ | ||
4539 | The SHA of the head commit. | ||
4540 | """ | ||
4541 | headSha: GitObjectID! | ||
4542 | |||
4543 | """ | ||
4544 | The name of the check. | ||
4545 | """ | ||
4546 | name: String! | ||
4547 | |||
4548 | """ | ||
4549 | Descriptive details about the run. | ||
4550 | """ | ||
4551 | output: CheckRunOutput | ||
4552 | |||
4553 | """ | ||
4554 | The node ID of the repository. | ||
4555 | """ | ||
4556 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
4557 | |||
4558 | """ | ||
4559 | The time that the check run began. | ||
4560 | """ | ||
4561 | startedAt: DateTime | ||
4562 | |||
4563 | """ | ||
4564 | The current status. | ||
4565 | """ | ||
4566 | status: RequestableCheckStatusState | ||
4567 | } | ||
4568 | |||
4569 | """ | ||
4570 | Autogenerated return type of CreateCheckRun | ||
4571 | """ | ||
4572 | type CreateCheckRunPayload @preview(toggledBy: "antiope-preview") { | ||
4573 | """ | ||
4574 | The newly created check run. | ||
4575 | """ | ||
4576 | checkRun: CheckRun | ||
4577 | |||
4578 | """ | ||
4579 | A unique identifier for the client performing the mutation. | ||
4580 | """ | ||
4581 | clientMutationId: String | ||
4582 | } | ||
4583 | |||
4584 | """ | ||
4585 | Autogenerated input type of CreateCheckSuite | ||
4586 | """ | ||
4587 | input CreateCheckSuiteInput @preview(toggledBy: "antiope-preview") { | ||
4588 | """ | ||
4589 | A unique identifier for the client performing the mutation. | ||
4590 | """ | ||
4591 | clientMutationId: String | ||
4592 | |||
4593 | """ | ||
4594 | The SHA of the head commit. | ||
4595 | """ | ||
4596 | headSha: GitObjectID! | ||
4597 | |||
4598 | """ | ||
4599 | The Node ID of the repository. | ||
4600 | """ | ||
4601 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
4602 | } | ||
4603 | |||
4604 | """ | ||
4605 | Autogenerated return type of CreateCheckSuite | ||
4606 | """ | ||
4607 | type CreateCheckSuitePayload @preview(toggledBy: "antiope-preview") { | ||
4608 | """ | ||
4609 | The newly created check suite. | ||
4610 | """ | ||
4611 | checkSuite: CheckSuite | ||
4612 | |||
4613 | """ | ||
4614 | A unique identifier for the client performing the mutation. | ||
4615 | """ | ||
4616 | clientMutationId: String | ||
4617 | } | ||
4618 | |||
4619 | """ | ||
4620 | Autogenerated input type of CreateContentAttachment | ||
4621 | """ | ||
4622 | input CreateContentAttachmentInput { | ||
4623 | """ | ||
4624 | The body of the content attachment, which may contain markdown. | ||
4625 | """ | ||
4626 | body: String! | ||
4627 | |||
4628 | """ | ||
4629 | A unique identifier for the client performing the mutation. | ||
4630 | """ | ||
4631 | clientMutationId: String | ||
4632 | |||
4633 | """ | ||
4634 | The node ID of the content_reference. | ||
4635 | """ | ||
4636 | contentReferenceId: ID! @possibleTypes(concreteTypes: ["ContentReference"]) | ||
4637 | |||
4638 | """ | ||
4639 | The title of the content attachment. | ||
4640 | """ | ||
4641 | title: String! | ||
4642 | } | ||
4643 | |||
4644 | """ | ||
4645 | Autogenerated return type of CreateContentAttachment | ||
4646 | """ | ||
4647 | type CreateContentAttachmentPayload { | ||
4648 | """ | ||
4649 | A unique identifier for the client performing the mutation. | ||
4650 | """ | ||
4651 | clientMutationId: String | ||
4652 | |||
4653 | """ | ||
4654 | The newly created content attachment. | ||
4655 | """ | ||
4656 | contentAttachment: ContentAttachment | ||
4657 | } | ||
4658 | |||
4659 | """ | ||
4660 | Autogenerated input type of CreateDeployment | ||
4661 | """ | ||
4662 | input CreateDeploymentInput @preview(toggledBy: "flash-preview") { | ||
4663 | """ | ||
4664 | Attempt to automatically merge the default branch into the requested ref, defaults to true. | ||
4665 | """ | ||
4666 | autoMerge: Boolean = true | ||
4667 | |||
4668 | """ | ||
4669 | A unique identifier for the client performing the mutation. | ||
4670 | """ | ||
4671 | clientMutationId: String | ||
4672 | |||
4673 | """ | ||
4674 | Short description of the deployment. | ||
4675 | """ | ||
4676 | description: String = "" | ||
4677 | |||
4678 | """ | ||
4679 | Name for the target deployment environment. | ||
4680 | """ | ||
4681 | environment: String = "production" | ||
4682 | |||
4683 | """ | ||
4684 | JSON payload with extra information about the deployment. | ||
4685 | """ | ||
4686 | payload: String = "{}" | ||
4687 | |||
4688 | """ | ||
4689 | The node ID of the ref to be deployed. | ||
4690 | """ | ||
4691 | refId: ID! @possibleTypes(concreteTypes: ["Ref"]) | ||
4692 | |||
4693 | """ | ||
4694 | The node ID of the repository. | ||
4695 | """ | ||
4696 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
4697 | |||
4698 | """ | ||
4699 | The status contexts to verify against commit status checks. To bypass required | ||
4700 | contexts, pass an empty array. Defaults to all unique contexts. | ||
4701 | """ | ||
4702 | requiredContexts: [String!] | ||
4703 | |||
4704 | """ | ||
4705 | Specifies a task to execute. | ||
4706 | """ | ||
4707 | task: String = "deploy" | ||
4708 | } | ||
4709 | |||
4710 | """ | ||
4711 | Autogenerated return type of CreateDeployment | ||
4712 | """ | ||
4713 | type CreateDeploymentPayload @preview(toggledBy: "flash-preview") { | ||
4714 | """ | ||
4715 | True if the default branch has been auto-merged into the deployment ref. | ||
4716 | """ | ||
4717 | autoMerged: Boolean | ||
4718 | |||
4719 | """ | ||
4720 | A unique identifier for the client performing the mutation. | ||
4721 | """ | ||
4722 | clientMutationId: String | ||
4723 | |||
4724 | """ | ||
4725 | The new deployment. | ||
4726 | """ | ||
4727 | deployment: Deployment | ||
4728 | } | ||
4729 | |||
4730 | """ | ||
4731 | Autogenerated input type of CreateDeploymentStatus | ||
4732 | """ | ||
4733 | input CreateDeploymentStatusInput @preview(toggledBy: "flash-preview") { | ||
4734 | """ | ||
4735 | Adds a new inactive status to all non-transient, non-production environment | ||
4736 | deployments with the same repository and environment name as the created | ||
4737 | status's deployment. | ||
4738 | """ | ||
4739 | autoInactive: Boolean = true | ||
4740 | |||
4741 | """ | ||
4742 | A unique identifier for the client performing the mutation. | ||
4743 | """ | ||
4744 | clientMutationId: String | ||
4745 | |||
4746 | """ | ||
4747 | The node ID of the deployment. | ||
4748 | """ | ||
4749 | deploymentId: ID! @possibleTypes(concreteTypes: ["Deployment"]) | ||
4750 | |||
4751 | """ | ||
4752 | A short description of the status. Maximum length of 140 characters. | ||
4753 | """ | ||
4754 | description: String = "" | ||
4755 | |||
4756 | """ | ||
4757 | If provided, updates the environment of the deploy. Otherwise, does not modify the environment. | ||
4758 | """ | ||
4759 | environment: String | ||
4760 | |||
4761 | """ | ||
4762 | Sets the URL for accessing your environment. | ||
4763 | """ | ||
4764 | environmentUrl: String = "" | ||
4765 | |||
4766 | """ | ||
4767 | The log URL to associate with this status. This URL should contain | ||
4768 | output to keep the user updated while the task is running or serve as | ||
4769 | historical information for what happened in the deployment. | ||
4770 | """ | ||
4771 | logUrl: String = "" | ||
4772 | |||
4773 | """ | ||
4774 | The state of the deployment. | ||
4775 | """ | ||
4776 | state: DeploymentStatusState! | ||
4777 | } | ||
4778 | |||
4779 | """ | ||
4780 | Autogenerated return type of CreateDeploymentStatus | ||
4781 | """ | ||
4782 | type CreateDeploymentStatusPayload @preview(toggledBy: "flash-preview") { | ||
4783 | """ | ||
4784 | A unique identifier for the client performing the mutation. | ||
4785 | """ | ||
4786 | clientMutationId: String | ||
4787 | |||
4788 | """ | ||
4789 | The new deployment status. | ||
4790 | """ | ||
4791 | deploymentStatus: DeploymentStatus | ||
4792 | } | ||
4793 | |||
4794 | """ | ||
4795 | Autogenerated input type of CreateEnterpriseOrganization | ||
4796 | """ | ||
4797 | input CreateEnterpriseOrganizationInput { | ||
4798 | """ | ||
4799 | The logins for the administrators of the new organization. | ||
4800 | """ | ||
4801 | adminLogins: [String!]! | ||
4802 | |||
4803 | """ | ||
4804 | The email used for sending billing receipts. | ||
4805 | """ | ||
4806 | billingEmail: String! | ||
4807 | |||
4808 | """ | ||
4809 | A unique identifier for the client performing the mutation. | ||
4810 | """ | ||
4811 | clientMutationId: String | ||
4812 | |||
4813 | """ | ||
4814 | The ID of the enterprise owning the new organization. | ||
4815 | """ | ||
4816 | enterpriseId: ID! @possibleTypes(concreteTypes: ["Enterprise"]) | ||
4817 | |||
4818 | """ | ||
4819 | The login of the new organization. | ||
4820 | """ | ||
4821 | login: String! | ||
4822 | |||
4823 | """ | ||
4824 | The profile name of the new organization. | ||
4825 | """ | ||
4826 | profileName: String! | ||
4827 | } | ||
4828 | |||
4829 | """ | ||
4830 | Autogenerated return type of CreateEnterpriseOrganization | ||
4831 | """ | ||
4832 | type CreateEnterpriseOrganizationPayload { | ||
4833 | """ | ||
4834 | A unique identifier for the client performing the mutation. | ||
4835 | """ | ||
4836 | clientMutationId: String | ||
4837 | |||
4838 | """ | ||
4839 | The enterprise that owns the created organization. | ||
4840 | """ | ||
4841 | enterprise: Enterprise | ||
4842 | |||
4843 | """ | ||
4844 | The organization that was created. | ||
4845 | """ | ||
4846 | organization: Organization | ||
4847 | } | ||
4848 | |||
4849 | """ | ||
4850 | Autogenerated input type of CreateIpAllowListEntry | ||
4851 | """ | ||
4852 | input CreateIpAllowListEntryInput { | ||
4853 | """ | ||
4854 | An IP address or range of addresses in CIDR notation. | ||
4855 | """ | ||
4856 | allowListValue: String! | ||
4857 | |||
4858 | """ | ||
4859 | A unique identifier for the client performing the mutation. | ||
4860 | """ | ||
4861 | clientMutationId: String | ||
4862 | |||
4863 | """ | ||
4864 | Whether the IP allow list entry is active when an IP allow list is enabled. | ||
4865 | """ | ||
4866 | isActive: Boolean! | ||
4867 | |||
4868 | """ | ||
4869 | An optional name for the IP allow list entry. | ||
4870 | """ | ||
4871 | name: String | ||
4872 | |||
4873 | """ | ||
4874 | The ID of the owner for which to create the new IP allow list entry. | ||
4875 | """ | ||
4876 | ownerId: ID! @possibleTypes(concreteTypes: ["Enterprise", "Organization"], abstractType: "IpAllowListOwner") | ||
4877 | } | ||
4878 | |||
4879 | """ | ||
4880 | Autogenerated return type of CreateIpAllowListEntry | ||
4881 | """ | ||
4882 | type CreateIpAllowListEntryPayload { | ||
4883 | """ | ||
4884 | A unique identifier for the client performing the mutation. | ||
4885 | """ | ||
4886 | clientMutationId: String | ||
4887 | |||
4888 | """ | ||
4889 | The IP allow list entry that was created. | ||
4890 | """ | ||
4891 | ipAllowListEntry: IpAllowListEntry | ||
4892 | } | ||
4893 | |||
4894 | """ | ||
4895 | Autogenerated input type of CreateIssue | ||
4896 | """ | ||
4897 | input CreateIssueInput { | ||
4898 | """ | ||
4899 | The Node ID for the user assignee for this issue. | ||
4900 | """ | ||
4901 | assigneeIds: [ID!] @possibleTypes(concreteTypes: ["User"]) | ||
4902 | |||
4903 | """ | ||
4904 | The body for the issue description. | ||
4905 | """ | ||
4906 | body: String | ||
4907 | |||
4908 | """ | ||
4909 | A unique identifier for the client performing the mutation. | ||
4910 | """ | ||
4911 | clientMutationId: String | ||
4912 | |||
4913 | """ | ||
4914 | An array of Node IDs of labels for this issue. | ||
4915 | """ | ||
4916 | labelIds: [ID!] @possibleTypes(concreteTypes: ["Label"]) | ||
4917 | |||
4918 | """ | ||
4919 | The Node ID of the milestone for this issue. | ||
4920 | """ | ||
4921 | milestoneId: ID @possibleTypes(concreteTypes: ["Milestone"]) | ||
4922 | |||
4923 | """ | ||
4924 | An array of Node IDs for projects associated with this issue. | ||
4925 | """ | ||
4926 | projectIds: [ID!] @possibleTypes(concreteTypes: ["Project"]) | ||
4927 | |||
4928 | """ | ||
4929 | The Node ID of the repository. | ||
4930 | """ | ||
4931 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
4932 | |||
4933 | """ | ||
4934 | The title for the issue. | ||
4935 | """ | ||
4936 | title: String! | ||
4937 | } | ||
4938 | |||
4939 | """ | ||
4940 | Autogenerated return type of CreateIssue | ||
4941 | """ | ||
4942 | type CreateIssuePayload { | ||
4943 | """ | ||
4944 | A unique identifier for the client performing the mutation. | ||
4945 | """ | ||
4946 | clientMutationId: String | ||
4947 | |||
4948 | """ | ||
4949 | The new issue. | ||
4950 | """ | ||
4951 | issue: Issue | ||
4952 | } | ||
4953 | |||
4954 | """ | ||
4955 | Autogenerated input type of CreateLabel | ||
4956 | """ | ||
4957 | input CreateLabelInput @preview(toggledBy: "bane-preview") { | ||
4958 | """ | ||
4959 | A unique identifier for the client performing the mutation. | ||
4960 | """ | ||
4961 | clientMutationId: String | ||
4962 | |||
4963 | """ | ||
4964 | A 6 character hex code, without the leading #, identifying the color of the label. | ||
4965 | """ | ||
4966 | color: String! | ||
4967 | |||
4968 | """ | ||
4969 | A brief description of the label, such as its purpose. | ||
4970 | """ | ||
4971 | description: String | ||
4972 | |||
4973 | """ | ||
4974 | The name of the label. | ||
4975 | """ | ||
4976 | name: String! | ||
4977 | |||
4978 | """ | ||
4979 | The Node ID of the repository. | ||
4980 | """ | ||
4981 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
4982 | } | ||
4983 | |||
4984 | """ | ||
4985 | Autogenerated return type of CreateLabel | ||
4986 | """ | ||
4987 | type CreateLabelPayload @preview(toggledBy: "bane-preview") { | ||
4988 | """ | ||
4989 | A unique identifier for the client performing the mutation. | ||
4990 | """ | ||
4991 | clientMutationId: String | ||
4992 | |||
4993 | """ | ||
4994 | The new label. | ||
4995 | """ | ||
4996 | label: Label | ||
4997 | } | ||
4998 | |||
4999 | """ | ||
5000 | Autogenerated input type of CreateProject | ||
5001 | """ | ||
5002 | input CreateProjectInput { | ||
5003 | """ | ||
5004 | The description of project. | ||
5005 | """ | ||
5006 | body: String | ||
5007 | |||
5008 | """ | ||
5009 | A unique identifier for the client performing the mutation. | ||
5010 | """ | ||
5011 | clientMutationId: String | ||
5012 | |||
5013 | """ | ||
5014 | The name of project. | ||
5015 | """ | ||
5016 | name: String! | ||
5017 | |||
5018 | """ | ||
5019 | The owner ID to create the project under. | ||
5020 | """ | ||
5021 | ownerId: ID! @possibleTypes(concreteTypes: ["Organization", "Repository", "User"], abstractType: "ProjectOwner") | ||
5022 | |||
5023 | """ | ||
5024 | A list of repository IDs to create as linked repositories for the project | ||
5025 | """ | ||
5026 | repositoryIds: [ID!] @possibleTypes(concreteTypes: ["Repository"]) | ||
5027 | |||
5028 | """ | ||
5029 | The name of the GitHub-provided template. | ||
5030 | """ | ||
5031 | template: ProjectTemplate | ||
5032 | } | ||
5033 | |||
5034 | """ | ||
5035 | Autogenerated return type of CreateProject | ||
5036 | """ | ||
5037 | type CreateProjectPayload { | ||
5038 | """ | ||
5039 | A unique identifier for the client performing the mutation. | ||
5040 | """ | ||
5041 | clientMutationId: String | ||
5042 | |||
5043 | """ | ||
5044 | The new project. | ||
5045 | """ | ||
5046 | project: Project | ||
5047 | } | ||
5048 | |||
5049 | """ | ||
5050 | Autogenerated input type of CreatePullRequest | ||
5051 | """ | ||
5052 | input CreatePullRequestInput { | ||
5053 | """ | ||
5054 | The name of the branch you want your changes pulled into. This should be an existing branch | ||
5055 | on the current repository. You cannot update the base branch on a pull request to point | ||
5056 | to another repository. | ||
5057 | """ | ||
5058 | baseRefName: String! | ||
5059 | |||
5060 | """ | ||
5061 | The contents of the pull request. | ||
5062 | """ | ||
5063 | body: String | ||
5064 | |||
5065 | """ | ||
5066 | A unique identifier for the client performing the mutation. | ||
5067 | """ | ||
5068 | clientMutationId: String | ||
5069 | |||
5070 | """ | ||
5071 | Indicates whether this pull request should be a draft. | ||
5072 | """ | ||
5073 | draft: Boolean = false | ||
5074 | |||
5075 | """ | ||
5076 | The name of the branch where your changes are implemented. For cross-repository pull requests | ||
5077 | in the same network, namespace `head_ref_name` with a user like this: `username:branch`. | ||
5078 | """ | ||
5079 | headRefName: String! | ||
5080 | |||
5081 | """ | ||
5082 | Indicates whether maintainers can modify the pull request. | ||
5083 | """ | ||
5084 | maintainerCanModify: Boolean = true | ||
5085 | |||
5086 | """ | ||
5087 | The Node ID of the repository. | ||
5088 | """ | ||
5089 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
5090 | |||
5091 | """ | ||
5092 | The title of the pull request. | ||
5093 | """ | ||
5094 | title: String! | ||
5095 | } | ||
5096 | |||
5097 | """ | ||
5098 | Autogenerated return type of CreatePullRequest | ||
5099 | """ | ||
5100 | type CreatePullRequestPayload { | ||
5101 | """ | ||
5102 | A unique identifier for the client performing the mutation. | ||
5103 | """ | ||
5104 | clientMutationId: String | ||
5105 | |||
5106 | """ | ||
5107 | The new pull request. | ||
5108 | """ | ||
5109 | pullRequest: PullRequest | ||
5110 | } | ||
5111 | |||
5112 | """ | ||
5113 | Autogenerated input type of CreateRef | ||
5114 | """ | ||
5115 | input CreateRefInput { | ||
5116 | """ | ||
5117 | A unique identifier for the client performing the mutation. | ||
5118 | """ | ||
5119 | clientMutationId: String | ||
5120 | |||
5121 | """ | ||
5122 | The fully qualified name of the new Ref (ie: `refs/heads/my_new_branch`). | ||
5123 | """ | ||
5124 | name: String! | ||
5125 | |||
5126 | """ | ||
5127 | The GitObjectID that the new Ref shall target. Must point to a commit. | ||
5128 | """ | ||
5129 | oid: GitObjectID! | ||
5130 | |||
5131 | """ | ||
5132 | The Node ID of the Repository to create the Ref in. | ||
5133 | """ | ||
5134 | repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"]) | ||
5135 | } | ||
5136 | |||
5137 | """ | ||
5138 | Autogenerated return type of CreateRef | ||
5139 | """ | ||
5140 | type CreateRefPayload { | ||
5141 | """ | ||
5142 | A unique identifier for the client performing the mutation. | ||
5143 | """ | ||
5144 | clientMutationId: String | ||
5145 | |||
5146 | """ | ||
5147 | The newly created ref. | ||
5148 | """ | ||
5149 | ref: Ref | ||
5150 | } | ||
5151 | |||
5152 | """ | ||
5153 | Autogenerated input type of CreateRepository | ||
5154 | """ | ||
5155 | input CreateRepositoryInput { | ||
5156 | """ | ||
5157 | A unique identifier for the client performing the mutation. | ||
5158 | """ | ||
5159 | clientMutationId: String | ||
5160 | |||
5161 | """ | ||
5162 | A short description of the new repository. | ||
5163 | """ | ||
5164 | description: String | ||
5165 | |||
5166 | """ | ||
5167 | Indicates if the repository should have the issues feature enabled. | ||
5168 | """ | ||
5169 | hasIssuesEnabled: Boolean = true | ||
5170 | |||
5171 | """ | ||
5172 | Indicates if the repository should have the wiki feature enabled. | ||
5173 | """ | ||
5174 |