The text to search within items.
The array of objects to search through.
An array of IDs or a single ID to exclude from search results.
The keys within each item to search against. Defaults to ["name"]
.
The key representing the unique identifier in each item. Defaults to _id
.
A list of words to exclude from the search. Defaults to defaultStopWords
.
A filtered array of objects matching the search criteria.
// Basic usage with custom data shape
interface Product {
id: string;
name: string;
description: string;
}
const products: Product[] = [
{ id: "1", name: "Apple", description: "A fresh apple" },
{ id: "2", name: "Banana", description: "Yellow banana" },
];
const results = filterAndSuggestItems<Product, string>(
"apple",
products,
[], // No excluded IDs
["name", "description"], // Fields to search within
"id" // ID key
);
console.log(results); // Logs items containing "apple"
Generated using TypeDoc
Filters and suggests objects from an array based on a description and specified fields.