• With issues:
  • It can't parse /api/characters?filter[name]=Shrek

Description


type CharactersFilter struct {
    Name *string `json:"name" form:"name"`
}

type SearchDTO[Filter any] struct {
    Pagination *PaginationDto `json:"pagination"`
    Filter     *Filter        `json:"filter"`
}

How to reproduce

Send request to /api/characters?filter[name]=Shrek

Comment From: KoNekoD

I am familiar with the previous discussions, I intend to add the ability to parse nested Query Strings