Skip to content

Instantly share code, notes, and snippets.

@gharriso
Created February 14, 2022 20:52
Show Gist options
  • Save gharriso/8696c59e4cb404a474519ab95126bf11 to your computer and use it in GitHub Desktop.
Save gharriso/8696c59e4cb404a474519ab95126bf11 to your computer and use it in GitHub Desktop.
agg01.push({
$setWindowFields: {
partitionBy: '$deviceData',
sortBy: {
timeStamp: 1
},
output: {
movingAverage: {
$avg: '$measurement',
window: {
range: [-6, -0],
unit: 'day'
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment