You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that if my input type has a list in it that the examples will not show up in the generated documentation. This is with Giraffe 6.2.0 and Fable.Remoting.Giraffe 5.14.0
Example Code
type MyRequest =
{
ids : string list
}
type Api =
{
id : MyRequest -> Async<unit>
}
docBase.route <@ fun api -> api.id @>
|> docBase.alias "My func"
|> docBase.description "Returns stuff"
|> docBase.example <@ fun api -> api.id {ids = ["anId"] } @>
The text was updated successfully, but these errors were encountered:
Hi @seoushi I believe this should work 🤔 maybe docBase.route <@ fun api -> api.id l @> should just be docBase.route <@ fun api -> api.id @> without a parameter provided?
I've noticed that if my input type has a list in it that the examples will not show up in the generated documentation. This is with Giraffe 6.2.0 and Fable.Remoting.Giraffe 5.14.0
Example Code
The text was updated successfully, but these errors were encountered: