Traqula
    Preparing search index...
    interface SelectQuery {
        base?: string;
        distinct?: true;
        from?: { default: IriTerm<string>[]; named: IriTerm<string>[] };
        group?: Grouping[];
        having?: Expression[];
        limit?: number;
        offset?: number;
        order?: Ordering[];
        prefixes: Record<string, string>;
        queryType: "SELECT";
        reduced?: true;
        type: "query";
        values?: ValuePatternRow[];
        variables: [Wildcard] | Variable[];
        where?: Pattern[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    base?: string
    distinct?: true
    from?: { default: IriTerm<string>[]; named: IriTerm<string>[] }
    group?: Grouping[]
    having?: Expression[]
    limit?: number
    offset?: number
    order?: Ordering[]
    prefixes: Record<string, string>
    queryType: "SELECT"
    reduced?: true
    type: "query"
    values?: ValuePatternRow[]
    variables: [Wildcard] | Variable[]
    where?: Pattern[]