Closed
Description
Issue Description
Aggregate query documentation does not mention that the pointer field names should be appended with _p_
while querying.
Steps to reproduce
If you have a pointer field by name createdBy
, then:
THIS DOES NOT WORK
{
project: { 'createdBy': 0 }
}
** THIS WORKS**
{
project: { '_p_createdBy': 0 }
}
Expected Results
Update the docs to reflect this nuance.
Actual Outcome
N/A
Environment Setup
N/A