Current examples shown are with stream: http://www.aerospike.com/docs/client/nodejs/usage/query/aggregate.html
Is there a simpler/way where we can just do:
options = filters: [ filter.equal('from_user', user_id) or filter.equal('to_user', user_id) ]
q = client.query('polls', 'chat', options)
allRecordsListJson= q.execute()
This can be done in python and other clients.