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

Popular posts from this blog

python - Selenium remoteWebDriver (& SauceLabs) Firefox moseMoveTo action exception -

html - How to custom Bootstrap grid height? -

transpose - Maple isnt executing function but prints function term -