does including the module and useGuard this in one place allow me to ONLY rate limit this one service? if not what's the best way to rate limit a single endpoint?
ThrottlerModule.forRoot(),
@UseGuards(ThrottlerGuard)
@Throttle(10, 60)
@Query()
async myQuery() {
return await this
}