12 lines
189 B
GraphQL
12 lines
189 B
GraphQL
query StreamObjectNoData($streamId: String!, $id: String!) {
|
|
stream(id: $streamId) {
|
|
id
|
|
name
|
|
object(id: $id) {
|
|
totalChildrenCount
|
|
id
|
|
speckleType
|
|
}
|
|
}
|
|
}
|