The reason i'm trying blinikDB is to have fast queryable data in memory. I was sad to see no substring search filters. I'd love to see something like the following ``` where: { prefix: "hell" } # returns hello ``` or ``` where: { substring: "no" } # returns: note, gnome, monosodium, etc. ``` Dexie.js has a function for prefix filtering, but no substring filter. - https://dexie.org/docs/WhereClause/WhereClause.startsWith() - https://dexie.org/docs/WhereClause/WhereClause.startsWithIgnoreCase()