couchbase_lite
couchbase_lite copied to clipboard
Flutter plugin for the Community edition of Couchbase Lite. Couchbase Lite is an embedded lightweight, document-oriented (NoSQL), syncable database engine.
**Is your feature request related to a problem? Please describe.** I'm trying to query users by name like %something%. ```dart var query = QueryBuilder.select([SelectResult.all()]) .from(CouchbaseHelper.databaseName!) .where(Expression.property("name") .like(Expression.string("%test%")))); ``` It works,...
ReplicatorType.pushAndPull using to pull and push data from couchbase sync server, document uploaded to server but pull not performing. **Project Configuration** flutter sdk version: sdk: ">=2.17.0
I have Xcode 13.1 installed running app from flutter on iOS simulator gives issue such module compiled by Swift 5.3.2 cannot be imported by Swift 5.5.1. Even though changing from...
hi can i use this plugin for with flutter for windows?
**Description** Hi I am trying to use Couchbase Lite package in flutter . I am trying to use replicator to sync data. The data sync is working in Android properly...
**Describe the bug** Crash on query with predicate using long attributes. Our app was making a query for a time period represented by two int64/long attributes in Unix Epoch Time,...
It would be great to allow for batch operations for efficiency (like avoiding unnecessary change events after saving docs etc..) The solution would just expose the couchbase lite functionality for...
If you use ``` config.pullAttributeFilters = { "sender": [1] }; ``` in replication config you got a empty response, that is because the value of Dart send is of int...
**Describe the bug** When I do Query like select * from document where sth =sth and sth = sth it does not work **To Reproduce** ``` Future filter( QueryBuilder.select([SelectResult.all()]) .from(CoreDB.instance.dbName)...
When Creating a document the system creates a document ID this ID can be used to update a document, later on, the problem is that there is no way we...