Incompatibility between Router and Client in HTTP requests

// works
const route = Http.router.get(
  "/foo/:id", 
  Http.router.schemaParams(Schema.struct({ id: Schema.string }))
)

// doesn't work
Http.client.get("/foo/:id").pipe(
  Http.client.setUrlParam("id", 123),
  myClient,
)

very very disappointed, I can't believe this is happening to me I'm so distraught I'm about to throw up 😢
Was this page helpful?