query-182e326410766ab9699aada15dffc651

rq turtle/ttl

All methods with a TaDiRAH ID

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT
  ?method ?methodLabel ?tadirahID ?methodDesc
WHERE {
  ?method wdt:P9309 ?tadirahID.             # select all items that have a TaDiRAH ID
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
    ?method rdfs:label ?methodLabel;        # get the labels. this line is not strictly necessary
            schema:description ?methodDesc. # get the description
    }
}
ORDER BY ?tadirahID
LIMIT 200

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?method"):::projected v4("?methodDesc"):::projected v3("?methodLabel"):::projected v1("?tadirahID"):::projected c3(["bd:serviceParam"]):::iri c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P9309"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 v2 --"rdfs:label"--> v3 v2 --"schema:description"--> v4 end