query-6bb5a3112408c830b6dd9d51505f8ef4

rq turtle/ttl

Prénoms liés à revoirNote : modifier le code du prénom pour checker les liens... tinyurl.com/ya7wgw6o

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?label ?nom (LANG(?nom) AS ?nomLang) WHERE {
  ?item wdt:P735 wd:Q20187.
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "fr,ru" . 
    ?item rdfs:label ?label
  }

OPTIONAL { ?item wdt:P1559 ?nom. }
}
LIMIT 2000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?label"):::projected v3("?nom"):::projected v4("?nomLang") c6(["fr,ru"]):::literal c2(["wd:Q20187"]):::iri c4(["bd:serviceParam"]):::iri v1 --"wdt:P735"--> c2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 v1 --"rdfs:label"--> v2 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1559".-> v3 end bind0[/"?nom"/] v3 --o bind0 bind0 --as--o v4