Known Issues in ArangoDB 3.6

    Critical issues (ArangoDB Technical & Security Alerts) are also found at arangodb.com/alerts.

    1. Connect to a Coordinator with arangosh
    2. var analyzers = require("@arangodb/analyzers");
    3. analyzers.remove("<PROBLEMATIC ANALYZER>");
    4. analyzers.save(dummy, "identity", {});
    5. db._query("FOR d IN <ANY EXISTING VIEW> SEARCH ANALYZER(STARTS_WITH(d.test, 'something'), @a) RETURN d", {a: dummy});

    6. Re-create your Analyzer (<PROBLEMATIC ANALYZER>) with the new, correct properties.

    7. analyzers.remove(dummy);