query-536216389ac3f2871032927185afec28

rq turtle/ttl

Propertiesmaintained by WikiProject (P6104)title (P1476)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?ExternalIdentifierProperty ?ExternalIdentifierPropertyLabel ?count WHERE {
    {
        SELECT ?ExternalIdentifierProperty (COUNT(DISTINCT ?item) AS ?count) WHERE {


           ?item wdt:P6104 wd:Q56241615 ;
                 wdt:P1476 ?title .
           ?item ?p ?id .
           ?ExternalIdentifierProperty wikibase:directClaim ?p; wikibase:propertyType wikibase:ExternalId.     
        }  GROUP BY ?ExternalIdentifierProperty
    }
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .
    }
}
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?ExternalIdentifierProperty"):::projected v7("?count"):::projected v5("?id") v2("?item") v4("?p") v3("?title") c8(["bd:serviceParam"]):::iri c2(["wd:Q56241615"]):::iri c10(["en"]):::literal c6(["wikibase:ExternalId"]):::iri v2 --"wdt:P6104"--> c2 v2 --"wdt:P1476"--> v3 v2 -->v4--> v5 v6 --"wikibase:directClaim"--> v4 v6 --"wikibase:propertyType"--> c6 bind1[/"count(?item)"/] v2 --o bind1 bind1 --as--o v7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end