Orca Note Plugin API Documentation
    Preparing search index...

    Interface QueryGroup2

    A group of query conditions combined with a logical operator. Used to create complex queries with multiple conditions.

    interface QueryGroup2 {
        conditions: QueryItem2[];
        kind: 100 | 101 | 102 | 103 | 104 | 105;
        negate?: boolean;
    }
    Index

    Properties

    conditions: QueryItem2[]

    Array of conditions within this group

    kind: 100 | 101 | 102 | 103 | 104 | 105

    Kind of group: self/ancestor/descendant

    negate?: boolean

    Whether to negate the conditions in this group