Product
'/products'
GET
async returnAllItems(): Promise<Product[]>'/products/{id}'
GET
async returnOneItem(
@param.path.string('id') productId: string,
): Promise<Product>Last updated
async returnAllItems(): Promise<Product[]>async returnOneItem(
@param.path.string('id') productId: string,
): Promise<Product>Last updated