Product Selector

Fusion 5.12
    Fusion 5.12

    Response Document Exclusion Stage

    Table of Contents

    This is a response rewriting stage that drops all documents that match all of the specified rules (Boolean AND). If some field has multiple values then at least one value must match against the specified pattern. No further processing is done on any matching documents, and they will not be returned in the final set of results. All non-matching documents are passed to the next stage in the pipeline.

    This stage must be used after the Solr Query stage in your pipeline.

    Configuration

    When entering configuration values in the UI, use unescaped characters, such as \t for the tab character. When entering configuration values in the API, use escaped characters, such as \\t for the tab character.

    This stage drops a document from the response if all of the specified rules match; otherwise, passes the document through unchanged. It does not replace them.

    skip - boolean

    Set to true to skip this stage.

    Default: false

    label - string

    A unique label for this stage.

    <= 255 characters

    condition - string

    Define a conditional script that must result in true or false. This can be used to determine if the stage should process or not.

    matchRules - array[object]required

    object attributes:{field required : {
     display name: Field
     type: string
    }
    pattern required : {
     display name: Regex Pattern
     type: string
    }
    }