unesco.png

FileName
unesco.png
Format
png
Sha1sum (hex)
3fd6333140bf7a78f19f6a3aa602ea79d8b572a3
Title
unesco.png
Category variable name
resourceType
Chart type
BarChart
Query
Vocabulary statistics
Series variable name
count
Title
Vocabulary statistics
Text
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

SELECT ?resourceType ?count
WHERE {
    {
        SELECT ("Concepts" AS ?resourceType) (COUNT(DISTINCT ?resource) AS ?count)
        WHERE {
            GRAPH ?graph {
                ?resource a skos:Concept .
            }
        }
    }
    UNION
    {
        SELECT ("Collections" AS ?resourceType) (COUNT(DISTINCT ?resource) AS ?count)
        WHERE {
            GRAPH ?graph {
                ?resource a skos:Collection .
            }
        }
    }
    UNION
    {
        SELECT ("Concept Schemes" AS ?resourceType) (COUNT(DISTINCT ?resource) AS ?count)
        WHERE {
            GRAPH ?graph {
                ?resource a skos:ConceptScheme .
            }
        }
    }
}
ORDER BY DESC(?count)
Title
Vocabulary statistics