FindAllIdentityField Recursively descend down a node looking for all Identity Fields min(year) == {year} eq(min(user.name), max(month)) == {user.name, month}
(node Node)
| 351 | // eq(min(user.name), max(month)) == {user.name, month} |
| 352 | // |
| 353 | func FindAllIdentityField(node Node) []string { |
| 354 | return findIdentities(node, nil).Strings() |
| 355 | } |
| 356 | |
| 357 | // FindAllLeftIdentityFields Recursively descend down a node looking for all |
| 358 | // LEFT Identity Fields |