Initialization Option Author API

none

Search for Items that do not contain any of the specified Tags.

You would want to use this to perform a search excluding any Items containing one of a range of Tags.

See Understanding Tag Formats for Content Creation and Filtering for more information on the TagsV2 format.

Important This initialization option requires either tags.all or tags.either to also be set. The tags.none initialization option cannot be set on its own.

Examples

var initializationOptions = {
    "config": {
        "activity_edit": {
            "item_search": {
                "filter": {
                    "restricted": {
                        "tags": {
                            "all": [
                                { "type": "TYPE1", "name": "NAME1" }
                            ],
                            "none": [
                                { "type": "TYPE2", "name": "NAME3" },
                                { "type": "TYPE2", "name": "NAME4" }
                            ]
                        }
                    }
                }
            }
        }
    }
};

Values

Request object key config.activity_edit.item_search.filter.restricted.tags.none

Type array[TagsV2]

Type definitions

tagsV2 object

Tags are used to improve searching for content while authoring and for reporting and analytics purposes.

See Understanding Tag Formats for Content Creation and Filtering for more information.

  • name string

    The Tag name.

    Maximum length is 255 characters.

  • type string

    The Tag type.

    Maximum length is 255 characters.

Related articles

Was this article helpful?