Goal: minimal solution including a query builder and a reusable query object. For reference, please check the [Java query API](https://docs.objectbox.io/queries). - [ ] QueryBuilder to allow "equal" criteria for string and int properties (pass property IDs to identify properties if we don't generate a meta model yet) - [ ] QueryBuilder allows building a Query object - [ ] Query object methods: find() and findFirst(). find() returns all matching objects, findFirst() just the first one.
Goal: minimal solution including a query builder and a reusable query object. For reference, please check the Java query API.