objectbox-java icon indicating copy to clipboard operation
objectbox-java copied to clipboard

Android Database - first and fast, lightweight on-device vector database

Results 125 objectbox-java issues
Sort by recently updated
recently updated
newest added

Maybe support an store.boxFor(Class[]).query()?

enhancement

## Issue Basics - ObjectBox version (are using the latest version?): 1.5.0 - Reproducibility: always ## Reproducing the bug ### Description I want to extract a common module (all objectBox...

enhancement
help wanted

## Issue Basics - ObjectBox version: 1.5.0 - Reproducibility: most of the times ### Description I found that when I have many data (>50,000 records) in the database, write operation...

When I use arch(LiveData), I found no exception trigged with no empty constructor. But build a query and invoke find() will trigger the exception.

bug

## Issue Basics - ObjectBox version (are using the latest version?): 2.0.0 - Reproducibility: always ## Reproducing the bug ### Description I'm using ObjectBox to save data. When I save...

enhancement

Using ObjectBoxLiveData to observer one property?

enhancement

Hi, I open this issue because I need to work with filters but whatever I do apart from **QueryBuilder.filter().find()** ignores the filter I made. for example I need an array...

enhancement

Can you add support **notContains** to QueryBuilder for string ```kotlin builder.notContains(Person_.name, "bla") ```

enhancement

I like to build an android app using the ObjectBox. In this case the entities and attributes are not known at compile time. Is it possible to create the data...

enhancement

How to make a query like this? noteBox.query() .equal(Note_.title, queryString) .link(Note_.tags).**totalRecordsGreaterThan**(0) .build() .find();

enhancement