Hi. I have a search function querying my product reposistory for productId, name etc.
Is there a way to extend the functionality, so that I could query an array of productids? Instad of only search for one product at a time, i would like to be able to put in multiple product ids and the have a list with the result.
Search: 1000,1001,1002,1003,1004
Result: Product 1, Product 2, Product 3, Product 4
I know this is not really a search, since the user already knows the IDs but the salespersons on the B2B shop in question uses this to create list for customers.
How can I achieve something like this?