query-adeca706945ed4b5247eb957cd6dac86
title: Toutes les productions ayant un idenfiant SAPA SELECT ?item ?itemLabel ?sociétéProduction ?sociétéProductionLabel ?SAPAID WHERE { ?item wdt:P272 ?sociétéProduction ; wdt:P8974 ?SAPAID . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # le label viendra de préférence dans votre langue, et autrement en anglais }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Toutes les productions ayant un idenfiant SAPA
SELECT ?item ?itemLabel ?sociétéProduction ?sociétéProductionLabel ?SAPAID
WHERE
{
?item wdt:P272 ?sociétéProduction ;
wdt:P8974 ?SAPAID .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # le label viendra de préférence dans votre langue, et autrement en anglais
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?SAPAID"):::projected
v1("?item"):::projected
v2("?sociétéProduction"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P272"--> v2
v1 --"wdt:P8974"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end