query-7b6fbe58eb89ffa67f6f9449ff7578e3
description particulière dans une langue donnée SELECT DISTINCT ?item ?label WHERE { ?item schema:description "DESCRIPTION"@CODE DE LANGUE. OPTIONAL { ?item rdfs:label ?label. FILTER(LANG(?label) = "CODE DE LANGUE DU LABEL"). } }
Use at
- https://query.wikidata.org/sparql
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#description particulière dans une langue donnée
SELECT DISTINCT ?item ?label
WHERE
{
?item schema:description "DESCRIPTION"@CODE DE LANGUE.
OPTIONAL {
?item rdfs:label ?label.
FILTER(LANG(?label) = "CODE DE LANGUE DU LABEL").
}
}