NodesWithTagPath returns all of the nodes that have an exact tag path.
The number of nodes returned can be zero and tag must match the tag path
completely and exactly.
Find all Death nodes that belong to all individuals:
.Individuals | NodesWithTagPath("DEAT")
From the individuals find all the Date nodes within only the Birth nodes.
NodesWithTagPath returns all of the nodes that have an exact tag path. The number of nodes returned can be zero and tag must match the tag path completely and exactly.
Find all Death nodes that belong to all individuals:
From the individuals find all the Date nodes within only the Birth nodes.
Combine all of the birth and death dates:
Fixes #300
This change is