Is it possible in Eve to get data from multiple sources/collection to be define in one datasource and used by one endpoint. The usual endpoint definition looks like this:
endpoint = {
'item_title': 'title',
'resource_methods': ['GET'],
'datasource': {'source': 'collection1',
'default_sort': [('time', -1)]},
'schema': schema
}
Is it possible to include documents from more than one collection for the same endpoint by making changes at 'Domain' or 'endpoint' tag?