0b7add4e06
improved rr display in commit list items; fiddled with dialog display of all rrs; added conditional display of rr in commit list item; moved rr display into its own component; added rr display on the commit page
27 lines
446 B
GraphQL
27 lines
446 B
GraphQL
query Stream($streamid: String!, $id: String!) {
|
|
stream(id: $streamid) {
|
|
id
|
|
name
|
|
role
|
|
commit(id: $id) {
|
|
id
|
|
message
|
|
referencedObject
|
|
authorName
|
|
authorId
|
|
authorAvatar
|
|
createdAt
|
|
branchName
|
|
sourceApplication
|
|
activity(actionType: "commit_receive", limit: 200) {
|
|
items {
|
|
info
|
|
time
|
|
userId
|
|
message
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|