query-bcdbd9438d59d5a73b41172ffb570a06
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?article ?title
WHERE
{
VALUES ?item { wd:Q446728 }
# Other code using ?item can be placed here ...
OPTIONAL
{
?article schema:about ?item.
?article schema:isPartOf <https://es.wikipedia.org/>.
?article schema:name ?title.
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?item"):::projected
v3("?title"):::projected
c3([https://es.wikipedia.org/]):::iri
bind0[/VALUES ?item/]
bind0-->v1
bind00(["wd:Q446728"])
bind00 --> bind0
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."schema:about".-> v1
v2 --"schema:isPartOf"--> c3
v2 --"schema:name"--> v3
end