Hi Scott,
I think you can achieve this by using the currentAndSubfolders filter with the project as the container path. Something like this:
LABKEY.Query.selectRows({
schemaName: "study",
queryName: "StudyProperties",
containerPath: "/VISC",
containerFilter: LABKEY.Query.containerFilter.currentAndSubfolders,
columns: [ "Container", "Label" ],
success: function (data) {
// ...
}
}); |