Query getting Segments whose children/grandchildren got modified within a day
Greetings,
I'm trying to make a query ,via the client,
that will get me a list of segments whose children/grandchildren nodes got modified within a day.
Let's suppose I have documents like following :
- Parent : Requirement Document (ID : 1)
- Child : Requirement (ID : 10)
- GrandChild : Requirement (ID : 100)
and I need a query which will get me the parent documents' ID only, which is 1 here,
when his grand Children nodes (Id 100 here), or Children nodes (Id 10 here) got modified within 24 hours.
(This Modification should include attaching new Files & deleting Attached Files)
It seems a query filtered
-item.segment
-and Modified Date in the last 1 days by following Contains
is getting me the the parent item only when his child got modified with in a day.
and another one filterned
-item.segment
-and Modified Date in the last 1 days by following Contains
(OR)
-item.node
-and Modified Date in the last 1 days by following Contains or Contained By
is getting me the whole documents(segments) & requirements(nodes) when their offsprings got modified.
Once again, I want the list, only consists of parents, when their offsprings got modified.
I hope there's a clue in another options.
Thanks for your help.

