Helpful
    Preparing search index...

    Interface IZFilterLogic

    Represents a composite logical filter.

    Logical filters do not have associated subjects and values. Instead they relate a conjunction of child filters with ZOperatorLogic.And / ZOperatorLogic.Or operators.

    interface IZFilterLogic {
        __type__: string;
        clauses: IZFilter[];
        operator: ZOperatorLogic;
    }

    Hierarchy (View Summary)

    Index

    Properties

    __type__: string

    Metadata type information about this filter.

    clauses: IZFilter[]

    Child clauses that are related by and/or.

    operator: ZOperatorLogic

    The operator that relates the subject to something.