query-5f2c207eca4e38dbbbe3fcadf5a861d2
title:get a specific male given name SELECT ?item ?itemLabel WHERE { ?item wdt:P31 wd:Q12308941. ?item rdfs:label ?itemLabel . FILTER (LANG(?itemLabel) = "de"). FILTER (?itemLabel = "Franz"). }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#title:get a specific male given name
SELECT ?item ?itemLabel
WHERE {
?item wdt:P31 wd:Q12308941.
?item rdfs:label ?itemLabel .
FILTER (LANG(?itemLabel) = "de").
FILTER (?itemLabel = "Franz").
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
c4(["wd:Q12308941"]):::iri
f0[["?itemLabel = 'Franz'"]]
f0 --> v1
f1[["?itemLabel = 'de'"]]
f1 --> v1
v2 --"wdt:P31"--> c4
v2 --"rdfs:label"--> v1