Hello
this library has been very helpful in our project.
Currently, nested structs are encoded using bracket notation
However, some APIs require dot-notation keys insted, such as
user.from=1601623397728
user.verified=true
Proposed Feature
Introduce an optional tag modifier "dot":
type Query struct {
User User `qs:"user,dot"`
}
Expected output:
user.from=1601623397728&user.verified=true
Thank you for considering this feature.
Hello
this library has been very helpful in our project.
Currently, nested structs are encoded using bracket notation
However, some APIs require dot-notation keys insted, such as
Proposed Feature
Introduce an optional tag modifier "dot":
Expected output:
user.from=1601623397728&user.verified=trueThank you for considering this feature.