query-28c53f1d4334eef89ca3e399d16ad14e

rq turtle/ttl

Requête SPARQLSalut, Que veux-tu exactement ? Voici déjà « une requête, toute simple, qui me liste les éléments avec la propriété P380 » :

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel
WHERE
{
    ?item wdt:P380 [] .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected a1((" ")) c3(["bd:serviceParam"]):::iri c5(["fr"]):::literal v1 --"wdt:P380"--> a1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end