Sometimes, we embed structs that we don't have access to edit, but we still want to be able to filter and sort by them. For example:
type User struct {
gorm.Model
// ...
}
Therefore, I want to add support for filtering and sorting known fields. These fields can be part of the configuration of the parser with some default values.