-
Notifications
You must be signed in to change notification settings - Fork 12
Estadisticas
Mariano Botta edited this page Aug 20, 2019
·
1 revision
Se pued cambiar el ObjectId para otro efector
db.getCollection('agenda').aggregate([
{ $match: { 'organizacion._id' : ObjectId("57e9670e52df311059bc8964") } },
{ $unwind: '$tipoPrestaciones' },
{ $group: { _id: '$tipoPrestaciones.conceptId' } },
{ $group: { _id: null, 'total': {$sum: 1} } }
])
db.getCollection('prestaciones').aggregate([
{ $match: { 'solicitud.organizacion.id': ObjectId("57e9670e52df311059bc8964") } },
{ $group: { _id: '$paciente.id' } },
{ $group: { _id: null, total: { $sum: 1 } } }
])
db.getCollection('prestaciones').aggregate([
{ $match: { 'solicitud.organizacion.id': ObjectId("57e9670e52df311059bc8964"),
'estados.tipo': 'validada'
} },
{ $group: { _id: null, total: { $sum: 1 } } }
])
db.getCollection('authUsers').find({'organizaciones._id': ObjectId("57e9670e52df311059bc8964")}).count()
db.getCollection('prestaciones').aggregate([
{ $match: { 'solicitud.organizacion.id': ObjectId("57e9670e52df311059bc8964"),
'estados.tipo': 'validada'
} },
{ $unwind: '$ejecucion.registros' },
{ $group: { _id: null, total: { $sum: 1 } } }
])