pub async fn search_for_user_details_by_other_details(
conn: &mut PgConnection,
search: &str,
) -> ModelResult<Vec<UserDetail>>Expand description
Searches user_details by partial match on the generated search_helper column so the
user_details_search_helper_gist trigram index can serve the LIKE '%x%' predicate.