Skip to content

Instantly share code, notes, and snippets.

@travist
Last active September 26, 2017 18:40
Show Gist options
  • Save travist/82229be7b9d7cf087f3cc5d9e56e8f32 to your computer and use it in GitHub Desktop.
Save travist/82229be7b9d7cf087f3cc5d9e56e8f32 to your computer and use it in GitHub Desktop.
Report API Example
var pipeline = [];
pipeline.push({
'$match': {
'form': {$in: ['23234234234234423', '234234234234234234']}
}
});
pipeline.push({
'$match': {
'$or': [
{'data.firstName': 'Travis'},
{'data.account': '12345'}
]
}
});
Formio.request('https://yourproject.yourdomain.com/report', 'POST', pipeline).then(function(result) {
console.log(result);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment