Hey there,
I've got a user request to generate a table of certain parent and child/grandchild page groupings within a space ordered by last modification date.
They want to be able to see how recently particular parts of the space are updated and which are ignored.
Is there an SQL Query that anyone could suggest that would help with this?
My very basic example below does not pull in child pages but hopefully it will be enough to give you a sense of what I am trying to achieve (of course I imagine the solution will be much more complex to account for the child and grandchild pages).
select TITLE, LASTMODDATE from CONTENT C where C.CONTENTTYPE="PAGE" AND C.PARENTID=12345678 order by LASTMODDATE DESC ;
Thanks in advance
Hi Daniel,
you can use the metadata-report macro for this purpose (see https://marketplace.atlassian.com/plugins/org.andya.confluence.plugins.metadata). Below an example configuration:
<ac:structured-macro ac:name="metadata-report">
<ac:parameter ac:name="sort">Last Time Changed desc</ac:parameter>
<ac:parameter ac:name="root">My Parent Page</ac:parameter>
<ac:parameter ac:name="pages">@descendants</ac:parameter>
<ac:parameter ac:name="type">page</ac:parameter>
<ac:parameter ac:name="space">
<ri:space ri:space-key="My Space Key"/>
</ac:parameter>
<ac:parameter ac:name="maxResults">250</ac:parameter>
<ac:parameter ac:name="">Parent,Page,Last Time Changed,Last Changed By</ac:parameter
</ac:structured-macro>
This delivers a table with the following header:
image2015-3-24 10:40:39.png
Regards,
Matthias
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.