javascript - How to get complex object with mysql and nodejs? -
how retrieve object in mysql , node js?
- list table:
id,name,create... - product table:
id,list_id,name,price... - product_metadata table:
id,product_id,name,isshipping...
i want object table:
{ lists: [{ id: 1, name: 'my list of products', created: 'today', products:[{ name: 'my product', price: '$1', metadata: { name: 'some metaname', isshipping: true }, .... }, .... ] } ...] } how can 1 query?
Comments
Post a Comment