query-3d89fd111a5a321a1cc9204e2b495fe5
Autres
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?label ?sexe
WHERE
{
?item schema:description "Japanese voice actor"@en.
OPTIONAL {
?item schema:description ?label.}
OPTIONAL{
?item wdt:P21 ?sexe.}
FILTER(LANG(?label) = "fr").
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?label"):::projected
v3("?sexe"):::projected
c3([sJapanese voice actor^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
f0[["?label = 'fr'"]]
f0 --> v1
v2 --"schema:description"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."schema:description".-> v1
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P21".-> v3
end