query-79f65204fc06e5192d24fedf3bf04756
Entiteter for utvalgte sider på norsk Wikipedia SELECT ?item ?itemLabel ?name ?article WHERE { VALUES ?name { "Keplers lover"@nb "Newtons bevegelseslover"@nb "Newtons gravitasjonslov"@nb } ?article schema:name ?name; schema:about ?item; schema:isPartOf https://no.wikipedia.org/. SERVICE wikibase:label { bd:serviceParam wikibase:language "nb,en". } }
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#>
# Entiteter for utvalgte sider på norsk Wikipedia
SELECT ?item ?itemLabel ?name ?article
WHERE {
VALUES ?name {
"Keplers lover"@nb
"Newtons bevegelseslover"@nb
"Newtons gravitasjonslov"@nb
}
?article schema:name ?name;
schema:about ?item;
schema:isPartOf <https://no.wikipedia.org/>.
SERVICE wikibase:label { bd:serviceParam wikibase:language "nb,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v3("?item"):::projected
v1("?name"):::projected
c6(["bd:serviceParam"]):::iri
c4([https://no.wikipedia.org/]):::iri
c8(["nb,en"]):::literal
bind0[/VALUES ?name/]
bind0-->v1
bind00([sKeplers lover^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind00 --> bind0
bind01([sNewtons bevegelseslover^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind01 --> bind0
bind02([sNewtons gravitasjonslov^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind02 --> bind0
v2 --"schema:name"--> v1
v2 --"schema:about"--> v3
v2 --"schema:isPartOf"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end