query-834807391cff109a3dd59f7037ad076c
Firms (description)
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?item ( CONCAT(lcase(substr(?itemLabel,1,1)), substr(?itemLabel,2)) as ?nom ) WHERE {
?item wdt:P31/wdt:P279* wd:Q4830453 ; schema:description ?itemLabel .
FILTER (lang(?itemLabel) = "fr").
FILTER regex (?itemLabel, "^(Agence|Ancien|Compagnie|Société|Chaîne|Chaine|Constructeur|Entreprise|Marque)").
}
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
v3("?nom")
a1((" "))
c5(["wd:Q4830453"]):::iri
f0[["regex(?itemLabel,'^(Agence|Ancien|Compagnie|Société|Chaîne|Chaine|Constructeur|Entreprise|Marque)')"]]
f0 --> v1
f1[["?itemLabel = 'fr'"]]
f1 --> v1
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
v2 --"schema:description"--> v1
bind2[/"concat(lower-case(substring(?itemLabel,'1^^xsd:integer','1^^xsd:integer')),substring(?itemLabel,'2^^xsd:integer'))"/]
v1 --o bind2
bind2 --as--o v3