Known Issues in ArangoDB 3.6
Critical issues (ArangoDB Technical & Security Alerts) are also found at arangodb.com/alerts.
- Connect to a Coordinator with
arangosh
var analyzers = require("@arangodb/analyzers");
analyzers.remove("<PROBLEMATIC ANALYZER>");
analyzers.save(dummy, "identity", {});
db._query("FOR d IN <ANY EXISTING VIEW> SEARCH ANALYZER(STARTS_WITH(d.test, 'something'), @a) RETURN d", {a: dummy});
Re-create your Analyzer (
<PROBLEMATIC ANALYZER>
) with the new, correct properties.analyzers.remove(dummy);