query-009cd247fd9628a66b00e4460775c4ea
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?authorNameString
WHERE
{
VALUES ?item {wd:Q66526217}
?item wdt:P31/wdt:P279? wd:Q1266946.
?item wdt:P4101 wd:Q174570 .
?item wdt:P2093 ?authorNameString.
filter(REGEX(?authorNameString,"^*.Murat*."))
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?authorNameString"):::projected
v2("?item"):::projected
a1((" "))
c9(["bd:serviceParam"]):::iri
c3(["wd:Q1266946"]):::iri
c6(["wd:Q174570"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["regex(?authorNameString,'^*.Murat*.')"]]
f0 --> v1
bind1[/VALUES ?item/]
bind1-->v2
bind10(["wd:Q66526217"])
bind10 --> bind1
v2 --"wdt:P31"--> a1
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
a1 --"wdt:P279"--> c3
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
end
union0r <== or ==> union0l
end
v2 --"wdt:P4101"--> c6
v2 --"wdt:P2093"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end