3078 shaares
286 liens privés
286 liens privés
Pour interroger tout le graphe (non divisé), il est possible d'utiliser QLever avec une syntaxe légèrement différente. Il s'agit d'une institution tierce qui fait une copie du graphe de manière régulière (tous les mois environ).
Exemple : Helen De Cruz (cf. ci-dessous)
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?work ?label WHERE {
{ ?work (wdt:P50 | wdt:P98) wd:Q47189712 .
} UNION { ?work wdt:P2093 "Helen De Cruz" .
}
OPTIONAL { ?work rdfs:label ?label FILTER(LANG(?label) = "en") }
}