I'm having trouble finding a way to sort nodes by a "no group" variable. Is this a thing?
Looking to clean up our grouping and find out which nodes do not have a group to belong to.
This SQL query should work.
select NodeID, Caption from Nodes where
not Caption in (
SELECT distinct FullName
FROM ContainerMemberSnapshots
where EntityDisplayName = 'Node'
)