## 2019-01-15 #Dexie #Delete

### How to delete an entry in Dexie

First find it....

```javascript
import FileIndex from "src/client/fileindex.js"

FileIndex.current().db.files.filter(ea => {
  return ea.url.match("#Motivation")
}).each(ea => console.log("ea", ea.url))
```

And then use the same query to delte it

```javascript

FileIndex.current().db.files.filter(ea => {
  return ea.url.match("#Motivation")
}).delete()

```