pub async fn search_strings_by_prefix(
strings: Vec<String>,
query: String,
limit: i32,
return_none_for_empty_query: bool,
client_id: i32,
) -> Result<FoundPositions, Error>Expand description
Searches specified query by word prefixes in the provided strings. Returns 0-based positions of strings that matched. Can be called synchronously
ยงArguments
strings- The strings to search in for the queryquery- Query to search forlimit- The maximum number of objects to returnreturn_none_for_empty_query- Pass true to receive no results for an empty queryclient_id- The client id to send the request to