How do I create the route that receives a paramete...
# typescript
e
How do I create the route that receives a parameter in the url of
/api/pets/$id
?
Could it be something like that?
routeKey: "GET /api/pets/{id}",
m
Yep, that’s right —
{id}
, for example, with `awsx`:
🙌 1