-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Labels
Description
Describe the bug
A clear and concise description of what the bug is.
Dependencies and versions used
-
springwolf-kafkaversion2.0.0also1.2.0 -
springwolf-coreversion2.0.0also1.2.0
Code example
data class PersonEventDto(
val name: String,
val profession: Profession,
val locations: List<Locations>
)
data class Profession(
val title: String,
val category: String
)
data class Locations (
val name: String,
val address: String,
val streetNumber: String
)
`
If the PersonEventDto is used in a grouping, the Locations schema is filtered out. This happens for all Collections.
I expect it to be part of the grouping, so the resolution needs to change.
Implementation of this Example will be provided later on in PR.Reactions are currently unavailable