1cc6523752
fix(frontend): replace streamid with streamId in frontend gql query
27 lines
462 B
GraphQL
27 lines
462 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
|
|
# }
|
|
# }
|
|
}
|
|
}
|
|
}
|