We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 401cb15 commit 289572bCopy full SHA for 289572b
src/pouchdb/pouchdb.js
@@ -4,13 +4,15 @@ import 'react-native-get-random-values'
4
import HttpPouch from 'pouchdb-adapter-http'
5
import SQLiteAdapterFactory from 'pouchdb-adapter-react-native-sqlite'
6
import PouchDB from 'pouchdb-core'
7
+import PouchDBFind from 'pouchdb-find'
8
import mapreduce from 'pouchdb-mapreduce'
9
import replication from 'pouchdb-replication'
10
import WebSQLite from 'react-native-quick-websql'
11
12
const SQLiteAdapter = SQLiteAdapterFactory(WebSQLite)
13
14
export default PouchDB.plugin(HttpPouch)
15
+ .plugin(PouchDBFind)
16
.plugin(replication)
17
.plugin(mapreduce)
18
.plugin(SQLiteAdapter)
0 commit comments