isitayush
Explore posts from serverstypesafe permissions
Hi, So I wanted to infer all the procedures from my router recursively & assign a permission (string[]) to each one them. I wrote the following, It works however, I get a red squiggly (error) under the
example
in my permissions
object with the following error message.
In my above type, I am trying to check if the key is a procedure, then simply returning the permissions. Otherwise checking if the key is a router then repeating it recursively. I'm unable to figure out what I'm doing wrong. Can someone help fix this. : )28 replies
awaiting for procedure & logging the response.
Hi, I was wondering if there is a way to handle the return object via the post-middleware's? I know we could do something like, However, I want to access the returned result with an event name & log it. This event name could be returned by the procedure itself as one of the key's of
res
. The problem is I can't access the res
object as it's of type MiddlewareResult
& is the whole request itself that is returned from a procedure's query/mutation. How should I go about solving this? Is there a way I could destruct the data returned from next()
and wrap it in a defined type say something similar to, & fill in the fields with my res
object. log the response to my db & return res.reponse
to my client.3 replies