get
Points to a field in a Bson document.
Example
BsonPath["foo"] // $.foo
BsonPath["foo"]["bar"] // $.foo.barContent copied to clipboard
Points to the element at index in a BsonArray.
Example
BsonPath[0] // $[0]
BsonPath["foo"][1] // $.foo[1], the first element
BsonPath["foo"][-1] // $.foo[-1], the very least elementContent copied to clipboard