Files
speckle-server/packages/frontend/src/graphql/commit.gql
T
Dimitrie Stefanescu 1cc6523752 Merge pull request #477 from specklesystems/gergo/streamIdUnification
fix(frontend): replace streamid with streamId in frontend gql query
2021-11-30 19:22:00 +00:00

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