Type Alias SearchGroup

type SearchGroup = {
    qGroupType?: SearchGroupType;
    qId?: number;
    qItems?: SearchGroupItem[];
    qSearchTermsMatched?: number[];
    qTotalNumberOfItems?: number;
}
Index

Properties

qGroupType?: SearchGroupType

Type of the search group.

One of:

  • DatasetType or DATASET_GROUP
  • GenericObjectsType or GENERIC_OBJECTS_GROUP
qId?: number

Identifier of the search group.

qItems?: SearchGroupItem[]

List of items in the search group. The group items are numbered from the value of SearchGroupOptions.qOffset to the value of SearchGroupOptions.qOffset + SearchGroupOptions.qCount

qSearchTermsMatched?: number[]

Indexes of the search terms that are included in the group. These search terms are related to the list of terms defined in SearchResult.qSearchTerms .

qTotalNumberOfItems?: number

Total number of distinct items in the search group.