You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For arrays one is often interested in referencing a particular item. Current referencing is only supported by index, but often the index is unknown. In that case it would be beneficial to reference an item by selecting the first one having a particular element value for example with an XPath like syntax:
${settings.servers[id='apache'].passphrase}
The text was updated successfully, but these errors were encountered:
which just adds a target there with the index qualifier, i.e. the lookup does not actually interpret the index but just retrieves the mapping with that name. Just adding more InterpolationTargets with path containing the XPath expression does not really scale, so this seems to require a major extension of this library.
For arrays one is often interested in referencing a particular item. Current referencing is only supported by index, but often the index is unknown. In that case it would be beneficial to reference an item by selecting the first one having a particular element value for example with an XPath like syntax:
${settings.servers[id='apache'].passphrase}
The text was updated successfully, but these errors were encountered: