If you send the following to the Search endpoint:
{
"searchparams": [
{
"condition": "LEXICON",
"stringvalue": {
"value": "CSW21"
}
},
{
"condition": "WORD_LIST",
"stringarray": {
"values": ["FOO"]
}
}
],
"expand": false
}
It generates this query:
SELECT word, alphagram FROM (
SELECT alphagrams.alphagram
FROM alphagrams
WHERE words.word = ?
ORDER BY alphagrams.probability
) q
INNER JOIN words w using (alphagram)
and words.word is not a column.
If you send the following to the Search endpoint:
{ "searchparams": [ { "condition": "LEXICON", "stringvalue": { "value": "CSW21" } }, { "condition": "WORD_LIST", "stringarray": { "values": ["FOO"] } } ], "expand": false }It generates this query:
and
words.wordis not a column.