String columns can be used to apply exact filters on multiple terms separated by whitespace.
xata.search.all(
<search term>, {
tables: [{ table: "mytable", filter: { "content_lowercase": { "$contains": "termOne termTwo termN" } } }]
}
);
As Text columns don't support this type of exact multi-term filtering, supporting longer string columns would accommodate more use cases that require this filtering capability.