query-261d79b8d41d3b2c326a65d438afc13b
Report the items that match a group of Wikipedia pages AndrewBy
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?_articleEN ?pagename where {
values ?pagename { "Fish"@en "Chocolate"@en "Fish (disambiguation)"@en "Wikipedia:Notability"@en }
?_articleEN schema:about ?item. ?_articleEN schema:isPartOf <https://en.wikipedia.org/>.
?_articleEN schema:name ?pagename
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,nl". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?_articleEN"):::projected
v3("?item"):::projected
v1("?pagename"):::projected
c8(["#91;AUTO_LANGUAGE#93;,en,nl"]):::literal
c3([https://en.wikipedia.org/]):::iri
c6(["bd:serviceParam"]):::iri
bind0[/VALUES ?pagename/]
bind0-->v1
bind00([sFish^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind00 --> bind0
bind01([sChocolate^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind01 --> bind0
bind02([sFish (disambiguation)^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind02 --> bind0
bind03([sWikipedia:Notability^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind03 --> bind0
v2 --"schema:about"--> v3
v2 --"schema:isPartOf"--> c3
v2 --"schema:name"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end