PerBonomi
4 years agoBoss
API v2 Search doesn't work
Reading this page, I quote:
"In v2, perform a one-or-more term search with a comma-separated list of terms wrapped in parentheses.
Use this when you want to return messages that have at least one of these terms in the defined fields.
WHERE subject MATCHES ('apples', 'bananas', 'cherries')"
This query returns 2 results:
select subject,body from messages where subject matches 'attachment'
This query returns 0 results.
select subject,body from messages where subject matches ('attachment','android')
According to the documentation I should be getting results.
Fair to say that it's not WAI?