Files
speckle-server/packages/frontend/src/graphql/commit.gql
T
Dimitrie Stefanescu 0b7add4e06 feat(received receipts/frontend): layout improvements 👌
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
2021-10-13 19:40:05 +01:00

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
}
}
}
}
}