Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(search): brand exclusion in seach, ios #179

Merged
merged 1 commit into from
Mar 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions source/includes/_search.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down