Question from the Nest.js test

Access the `findAll()` method in NestJS

Easy

Take a look at the code below:

@Controller('cats')
export class CatsController {
  @Get()
  findAll(): string {
    return 'This action returns all cats';
  }
}

Which URL would be used to access the findAll() method?

Author: AxelStatus: PublishedQuestion passed 69 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!