-
Type: Task
-
Resolution: Done
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: Autocomplete
-
None
-
Not Needed
-
Iteration Novokuybyshevsk
Added a new aggregation expression, $getField: see the syntax document for more details: https://docs.google.com/document/d/1aXTM207O4b8Sj7C76f3A44dvCIXErgKB_u17XLnsxfk
Note that this is feature-flag guarded by featureFlagDotsAndDollars, which is currently disabled.
Description of Linked Ticket
While it's possible via combined use of $objectToArray and $filter with $map, it would be nice to have a simple expression to get value of particular field of an object:
db.foo.find() { _id: 1, a: 5, foo: { b: "a", c: 99.9 } } db.foo.aggregate({$project:{ foo_c_is: {$getField:[ "c", "$foo" ] } } }) { _id: 1, foo_c_is: 99.9 }
This will allow easily plucking out a value when the field name is stored in another part of the same document, or when it has some funny character that precludes it being used as subfield name (like leading "$") as in SERVER-30365 and SERVER-14466 or embedded '.' when querying oplog or system.profile collections.
Second argument could be optional and default to "$$ROOT".
- duplicates
-
COMPASS-5173 Add expression to get value by keyname from object
- Closed
- is caused by
-
SERVER-30417 add expression to get value by keyname from object
- Closed