query-bf9ac60bbf626d5f39fe470460598984
מזהה J9U עם זכר נקבה
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?j9u ?gender WHERE {
SERVICE bd:slice {
?item wdt:P8189 ?j9u .
bd:serviceParam bd:slice.offset 0 . # Start at item number (not to be confused with QID)
bd:serviceParam bd:slice.limit 1000000 . # List this many items
}
OPTIONAL {?item wdt:P21 ?gender}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?gender"):::projected
v1("?item"):::projected
v2("?j9u"):::projected
c5(["0^^xsd:integer"]):::literal
c3(["bd:serviceParam"]):::iri
c7(["1000000^^xsd:integer"]):::literal
subgraph s1["http://www.bigdata.com/rdf#slice"]
style s1 stroke-width:4px;
v1 --"wdt:P8189"--> v2
c3 --"bd:slice.offset"--> c5
c3 --"bd:slice.limit"--> c7
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P21".-> v3
end