Hack-The-Tunnels-8 / hack-the-tunnels-dell

hack-the-tunnels-dell created by GitHub Classroom
1 stars 1 forks source link

Get Products Search Term #20

Open hackthetunnelsbot[bot] opened 1 year ago

hackthetunnelsbot[bot] commented 1 year ago

Description:

Modify the GET /products endpoint to optionally take a query parameter called searchTerm.

Ex: GET /products?searchTerm=example.

Modify the getProducts function on service/src/infrastructure/api/routes/products.ts to account for this new query parameter.

Additionally, add a new function to service/src/services/Product.ts called search that will be invoked if the searchTerm query parameter is present.

To implement the search function, read the following guide that details how query prisma using a search string.

Acceptance Criteria:

If a searchTerm is present in the query parameters, the GET /products endpoint returns products relevant to the searchTerm.

Ex: GET /products?searchTerm=example could potentially return products with the title example.