query-2d27c3f048ff5904b411a7ef4bcaf402
TODO מקבל רשימת מזהי Q
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?itemLabel_en ?itemLabel_he ?sitelink ?article
WHERE
{
VALUES ?item {
wd:Q10859
wd:Q145
}
?article schema:about ?item ;
schema:isPartOf <https://he.wikipedia.org/> ;
schema:name ?sitelink .
OPTIONAL { ?item rdfs:label ?itemLabel_en . filter(lang(?itemLabel_en)="en") }
OPTIONAL { ?item rdfs:label ?itemLabel_he . filter(lang(?itemLabel_he)="he") }
}
Query found at
- https://www.wikidata.org/wiki/User:Geagea/SPARQL
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2022/07
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?article"):::projected
v3("?item"):::projected
v2("?itemLabel_en"):::projected
v1("?itemLabel_he"):::projected
v5("?sitelink"):::projected
c5([https://he.wikipedia.org/]):::iri
bind0[/VALUES ?item/]
bind0-->v3
bind00(["wd:Q10859"])
bind00 --> bind0
bind01(["wd:Q145"])
bind01 --> bind0
v4 --"schema:about"--> v3
v4 --"schema:isPartOf"--> c5
v4 --"schema:name"--> v5
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v1
end