Merge pull request #2441 from AFaust/bugfix/nodesmetadata-childassoc-param-handling

Map includeChildAssociations request parameter
This commit is contained in:
Tom Page
2024-02-15 10:37:45 +00:00
committed by GitHub

View File

@@ -175,6 +175,10 @@ public class NodesMetaDataGet extends DeclarativeWebScript
{
filter.setIncludeChildIds(o.getBoolean("includeChildIds"));
}
if(o.has("includeChildAssociations"))
{
filter.setIncludeChildAssociations(o.getBoolean("includeChildAssociations"));
}
if(o.has("includeTxnId"))
{
filter.setIncludeTxnId(o.getBoolean("includeTxnId"));