Orca Note Plugin API Documentation
    Preparing search index...

    Interface QueryGroup

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

    interface QueryGroup {
        conditions: QueryItem[];
        includeDescendants?: boolean;
        kind: 1 | 2;
    }
    Index

    Properties

    conditions: QueryItem[]

    Array of conditions within this group

    includeDescendants?: boolean

    Whether to include descendant blocks in results

    kind: 1 | 2

    Kind of group: 1 for AND, 2 for OR