From bb6acedda8824e5d0f35943c6dd4d7ee5ac282b8 Mon Sep 17 00:00:00 2001 From: Aleksandr Zavadkin Date: Tue, 4 Mar 2025 18:20:41 +0900 Subject: [PATCH] docs(search): brand exclusion in seach, ios Signed-off-by: Aleksandr Zavadkin --- source/includes/_search.md.erb | 69 ++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/source/includes/_search.md.erb b/source/includes/_search.md.erb index da86923..c67cd39 100644 --- a/source/includes/_search.md.erb +++ b/source/includes/_search.md.erb @@ -20,6 +20,41 @@ There is a response limit: a response can contain no more than ten thousand item sdk.suggest(query: "ipho") { searchResult in print("Suggest callback") } + +/** + +Brand exclusion + +To exclude brands from the search results, use `excludedBrands`. + +excludedBrands – an array of brand names that should be excluded from search results. + +**/ + +sdk?.search( + query: "powder bronzer", + excludedBrands: ["dior", "estee lauder"] +) { result in + switch result { + case .success(let response): + print(response.productsTotal) + case .failure(let error): + print(error.description) + } +} + +sdk?.suggest( + query: "powder bronzer", + excludedBrands: ["dior", "estee lauder"] +) { result in + switch result { + case .success(let response): + print(response.productsTotal) + case .failure(let error): + print(error.description) + } +} + ``` ```java //Instant search @@ -240,6 +275,40 @@ sdk.search(query: "iphone") { searchResult in sdk.search(query: "laptop", limit: nil, offset: nil, categoryLimit: nil, categories: nil, extended: nil, sortBy: nil, sortDir: nil, locations: nil, brands: nil, filters: nil, priceMin: nil, priceMax: nil, colors: nil, exclude: nil, fashion_sizes: nil) { searchResult in print("Full search callback") } + +/** + +Brand exclusion + +To exclude brands from the search results, use `excludedBrands`. + +excludedBrands – an array of brand names that should be excluded from search results. + +**/ + +sdk?.search( + query: "powder bronzer", + excludedBrands: ["dior", "estee lauder"] +) { result in + switch result { + case .success(let response): + print(response.productsTotal) + case .failure(let error): + print(error.description) + } +} + +sdk?.suggest( + query: "powder bronzer", + excludedBrands: ["dior", "estee lauder"] +) { result in + switch result { + case .success(let response): + print(response.productsTotal) + case .failure(let error): + print(error.description) + } +} ``` ```kotlin // Search with locations