query-838649851908c1cd6579709112e449c9

rq turtle/ttl

obtenir des résultats pour deux éléments spécifiques SELECT ?item ?itemLabel ?mother ?motherLabel WHERE { VALUES ?item { wd:Q937 wd:Q1339 } OPTIONAL { ?item wdt:P25 ?mother. } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

variante

SELECT ?item ?itemLabel ?mother ?motherLabel ?ISNI WHERE { VALUES ?ISNI { "0000 0001 2281 955X" "0000 0001 2276 4157" } ?item wdt:P213 ?ISNI. OPTIONAL { ?item wdt:P25 ?mother. } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

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#>
#obtenir des résultats pour deux éléments spécifiques
SELECT ?item ?itemLabel ?mother ?motherLabel WHERE {
  VALUES ?item { wd:Q937 wd:Q1339 }
  OPTIONAL { ?item wdt:P25 ?mother. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
#variante
SELECT ?item ?itemLabel ?mother ?motherLabel ?ISNI WHERE {
  VALUES ?ISNI { "0000 0001 2281 955X" "0000 0001 2276 4157" }
  ?item wdt:P213 ?ISNI.
  OPTIONAL { ?item wdt:P25 ?mother. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at