Added support for mongo keywords in projects
For example this is now possible:
projection={
'employees': {
'$ref': Employee,
'$slice': 2,
'name': True
}
}
So get the first 2 employee Ids in an array of employee Ids stored against the field employees
and project them as Employee documents selecting only the name field for each.