Argument of type 'unknown' is not assignable to parameter of type 'Id<string>'.
https://docs.convex.dev/functions/query-functions#query-arguments-and-responses
when I try to make a query that takes params, in typescript, eg like this:
I get this error:
Argument of type 'unknown' is not assignable to parameter of type 'Id<string>'.how do i pass params to a query in a way that compiles?

