Last active
September 26, 2017 18:40
-
-
Save travist/82229be7b9d7cf087f3cc5d9e56e8f32 to your computer and use it in GitHub Desktop.
Report API Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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