Hello everyone! New to NestJS, and I've been looking at some tutorials and with the docs and had a question that I just wasn't able to answer. Is it possible to have unique API endpoints with NestJS using variables?
What I mean for this is for example, say I have an app like Google Drive or something and an endpoint looks like this:
GET /drives/{drive-id}/items/{item-id}
Is it possible for me to assign the values for {drive-id} and {item-id} in my NestJS controller? If so, could someone direct me to proper documentation or provide sample code? Thanks!