Saxonberg Server API
    Preparing search index...

    Interface CardinalitySpec

    Authorial cardinality constraint on an objects field. Describes how many results the controller wants from MQL resolution. Default is { min: 0, max: Infinity } (take everything resolved). Setting exactly: N is sugar for min: N, max: N.

    interface CardinalitySpec {
        exactly?: number;
        max?: number;
        min?: number;
    }
    Index

    Properties

    Properties

    exactly?: number
    max?: number
    min?: number