query-79288e0a1098a7eeb503064fffaf7c05

rq turtle/ttl

Terminology registries collect, describe and/or provide multiple KOS. Get all terminology registries with their BARTOC URI (if available) with this query: (Q22692845)terminology registry Instances of

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 ?item ?itemLabel ?bartoc WHERE {
    ?item wdt:P31/wdt:P279* wd:Q22692845 .
    OPTIONAL {
      ?item wdt:P2689 ?id .
      BIND (IRI(CONCAT('http://bartoc.org/en/node/',?id)) AS ?bartoc) .
    }
    SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?bartoc"):::projected v2("?id") v1("?item"):::projected a1((" ")) c6(["bd:serviceParam"]):::iri c3(["wd:Q22692845"]):::iri c8(["en"]):::literal v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P2689".-> v2 bind0[/"concat('http://bartoc.org/en/node/',?id)"/] v2 --o bind0 bind0 --as--o v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end