Helpful
    Preparing search index...

    Interface IZFilterBinary

    Represents a standard comparison filter between a subject field and a wanted value.

    interface IZFilterBinary {
        __type__: string;
        operator: ZOperatorBinary;
        subject: string;
        value: any;
    }

    Hierarchy (View Summary)

    Index

    Properties

    __type__: string

    Metadata type information about this filter.

    operator: ZOperatorBinary

    The operator that relates the subject to something.

    subject: string

    The filed to sort by.

    value: any

    The value to sort by.