Query

Interface Query

A query for metadata of structure or aux nodes that can be used in the QueryAPI. For each node that matches the specified conditions, the values defined by the selectors are returned.

The linkDepth property defines how many levels of linked 3D models are included in the query. The default value is 1. For more information, see QueryAPI.

interface Query {
    conditions: QueryCondition[];
    linkDepth?: number;
    select: QuerySelect[];
}
Index

Properties

conditions: QueryCondition[]
linkDepth?: number
select: QuerySelect[]