Hi folks
I'm wanting to view a list of all tags added to the corpus as a whole and ultimately to be able to filter by some tag metadata facets we will add. e.g. low confidence.
We have a workflow where we will add metadata such as confidence ratings to tags added in a tag set on a content corpus and have review cycles on certain tag categories.
Is there a current or easy method suggested to view all the tags in a list ? I couldn't find a panel view that shows tags as a global list - is this right ?
Currently it seems that to view tags one has to go to individual corpus items to which the tag has been added as in the below image:
I've found that the tag set graph captures the content object and the skos tag assigned. like this
My first attempt is to use a construct shape rule to add the above triples to a new class corpus:Document-tags. Then I figure I can view instances of that class which would be all of the tags as new objects.
something like
CONSTRUCT {
?this rdf:type corpus:DocumentTag .
?section corpus:DocumentTag ?tag .
}
WHERE {
?section corpus:topic ?tag .
?tag rdf:type skos:Concept .
}
But this is not quite working
Look forward to any advice
Cheers
Simon