@Purkylin_glow making var optional doesn't work on Xcode 15 Beta 7.
That's my case that worked before:
@Model
final class Category {
...
@Relationship(deleteRule: .cascade) var incomes: [Income]
...
}
@Model
final class Income {
...
@Relationship(inverse: \Category.incomes) var category: Category?
...
}