Me gustaría saber si hay una forma de devolver solo _id
, user_id
y total
sin el subdocumento items
.devolver solo una propiedad "_id"
{
"_id" : 122,
"user_id" : 123456,
"total" : 100,
"items" : [
{
"item_name" : "my_item_one",
"price" : 20
},
{
"item_name" : "my_item_two",
"price" : 50
},
{
"item_name" : "my_item_three",
"price" : 30
}
]
}
Seleccione su código y haga clic en el icono '{}' para sangrar correctamente, también echar un vistazo a la [FAQ - firmas] (http://stackoverflow.com/faq#signatures). –