Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
linenumberstrue
//new labels to be added to pages
string [] newLabels = "confluence|power_scripts";

//get the id of the parent
number parent = getPage("CTR", "Add a new label to the children of a page");

//get the ids of the children
number [] children = getChildPages(parent);

for(number child in children) { //loop through children
    //add labels to the child page
    addLabels(child, newLabels);
}

See Other Recipes

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
cqllabel = "pages"

See More Documentation

Filter by label (Content by label)
showLabelsfalse
max20
showSpacefalse
cqllabel = "page_routines"