12 lines
178 B
GraphQL
12 lines
178 B
GraphQL
query Object($streamId: String!, $id: String!){
|
|
stream(id: $streamId) {
|
|
id
|
|
object(id: $id) {
|
|
totalChildrenCount
|
|
id
|
|
speckleType
|
|
data
|
|
}
|
|
}
|
|
}
|