strongloop / loopback

LoopBack makes it easy to build modern applications that require complex integrations.
http://loopback.io
Other
13.23k stars 1.2k forks source link

What is corresponding method to do referencesmany in lb4 #4346

Closed noufalnoufu closed 3 years ago

noufalnoufu commented 3 years ago

Can you explain how to do referencesmany in loopback 4

https://loopback.io/doc/en/lb3/Embedded-models-and-relations.html#referencesmany

I wanted to store categories and its products Ids as an array in the collection. On get method I need show category info as well as product details as mentioned below .Is there any best with relational model in loopback? I am new in Loopback and node js, please suggest best practice.

Category { "id": "1", "Category": "Category 1", "products": [ "1", "2" ] }, { "id": "2", "Category": "Category 2", "products": [ "2", "3" ] }

Products { "id": "1", "title": "Product 1" }, { "id": "2", "title": "Product 2" }, { "id": "3", "title": "Product 3" }

Result { "Category": "Category 1", "products": [ { "id": "1", "title": "Product 1" }, { "id": "2", "title": "Product 2" } ] }, { "Category": "Category 2", "products": [ { "id": "2", "title": "Product 2" }, { "id": "3", "title": "Product 5" } ] }

achrinza commented 3 years ago

@dhmlau I don't permissions to shift this issue to the LoopBack 4 repo. Could you please assist? Thanks

dhmlau commented 3 years ago

I think it's a duplicate of https://github.com/strongloop/loopback-next/issues/7102. So I'm closing this issue as duplicate and let's continue the discussion over there. Thanks.