Re: [xwiki-users] Immediate Child Document Query

2016-05-18 Thread Jesse Bright
It's never too late for good advice. I actually ran into a naming issue with my project and put it on hold for a bit. When I pick it back up next week I will look at using this method instead. Thanks! Regards, Jesse > On May 17, 2016, at 4:21 PM, Eduard Moraru wrote: >

Re: [xwiki-users] Immediate Child Document Query

2016-05-17 Thread Eduard Moraru
Hi, Note that doc.parent is deprecated and could be removed at some point in the future. Your query should be the translation of "Get all the documents inside a space which has a parent space with the given reference ", i.e. "select doc.fullName from XWikiDocument doc, XWikiSpace space where

Re: [xwiki-users] Immediate Child Document Query

2016-04-11 Thread Personal
Figured it out over the weekend: where doc.parent = ‘Parent Full Name’ Guess I was trying to make it more complicated than it actually was. Regards, Jesse > On Apr 8, 2016, at 7:51 AM, Personal wrote: > > Per the Query Module documentation: > > List of child

[xwiki-users] Immediate Child Document Query

2016-04-08 Thread Personal
Per the Query Module documentation: List of child spaces: select space.name from XWikiSpace as space where space.parent = 'Parent Space’ List of all nested documents in a space:where doc.space like 'Space' or doc.space like 'Space.%’ The first