We have a Confluence space with ~200 pages that are categorized into 7 types of labels.
In order that I don't miss any new ones,... is there an easy way to find pages with no labels in a space?
Our Confluence is not managed by us (or Atlassian), so we can't update the database directly. Any plug-in would have to be free.
@Stephen Deutsch answer is a good one. If you get more labels that could be problematic. I think this should work for any number of labels.
type:page NOT labelText:[a TO z] NOT labelText:[0 TO 9]
This does not work for me.
I'm using Confluence 6.3. (I don't think it's the cloud version).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think it's the same issue as with JQL, you can't negate label searches unless you negate each label individually.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am searching for pages without some specific values. Had the same problems as Shawn. For me
type:page AND [a TO z] NOT labelText:SpeLabel1 AND NOT labelText:SpeLabel2 AND NOT labelText:SpeLabel3
worked. (just search for pages, using the a TO Z to find all pages and then excluding them by label)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you only have seven labels on your space that you want to filter, you could at least search for pages without those seven labels. Simply use this search term (example is for 3 labels, but you could use it for more):
(type:page NOT labelText:"label1") AND (type:page NOT labelText:"label2") AND (type:page NOT labelText:"label3")
Simply copy and paste from the last "AND" until the end to add a new label to the search. You can filter by space on the left-hand side of the search page.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
More likely than not, you could have Atlassian run a query for you. My experience has led me to believe this is otherwise not possible with the tools provided by Atlassian.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.