query TestSearchDimRelease(
    $term: String
) {
    searchDimRelease(
        term: $term
        searchContext: WORKSTATION_ANALYTICS
        limit: 10
        offset: 0
    ) {
        totalCount
        items {
            product {
                productId
                upc
                productName
                releaseDate
            }
            searchHighlights {
                fieldName
                highlightedValues
            }
        }
    }
}
