-
Notifications
You must be signed in to change notification settings - Fork 307
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Note these related feature requests:
This might be a feature request.
It seems that currently it is not possible to listen for nested changes.
- ObjectBox version: 1.2.1
- Reproducibility: always
boxFor(Item::class.java).query().build().subscribe().observer { items ->
// Not called when Note.text changes.
}
Entities
@Entity
class Item {
@Id
open var id: Long = 0L
lateinit open var notes: ToMany<Note>
}
@Entity
class Note {
@Id
open var id: Long = 0L
open var text: String? = null
@Backlink
lateinit open var parentItem: ToOne<Item>
}
gabrieldelmas, kenji47, jrcacd, alexgasparyan, mecoFarid and 6 more
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request