onshape-cadscript
    Preparing search index...

    Type Alias QueryRef

    QueryRef:
        | { entityType: EntityType; feature: FeatureRef; type: "created-by" }
        | {
            entityId: string;
            entityType: EntityType;
            sketch: FeatureRef<"sketch">;
            type: "sketch-entity";
        }
        | {
            cap: "START"
            | "END";
            entityType: "FACE" | "EDGE";
            feature: FeatureRef;
            type: "cap";
        }
        | { body: QueryRef; entityType: EntityType; type: "owned-by-body" }
        | { geometry: GeometryType; query: QueryRef; type: "geometry" }
        | { point: Point3; query: QueryRef; type: "closest-to" }
        | { query: string; type: "raw" }