David Bayo Alcaide

Results 5 issues of David Bayo Alcaide

Hi all! I want to perform this factory class behaviour, but when I call `new S()`, a promise is returned. Do I do something wrong? May this feature is not...

Hi, ```go package main import ( "fmt" "github.com/go-resty/resty/v2" ) func main() { client := resty.New() req := client. SetBaseURL("https://example.com"). R(). SetQueryParam("page", "1") /* result: "" expected: "https://example.com?page=1" */ fmt.Println(req.URL) req.Get("")...

question

Hi, I'm having a little problem if I try to define an array into query params. Here I have an example: ```json { "occupants": { "ages": [14, 45, 67] }...

Hello, I would like to know if decoding bson values from MongoDB could be a feature of this amazing lib. ```go type User struct { Name mo.Option[string] `bson:"name"` } ```...

Hi, Just a little question. Could be possible to marshal and unmarshal MongoDB structs with Option properties? If you try to Decode a Cursor result, It not fits the Option...