Project:SPARQL query service/queries/examples: Difference between revisions
From SCDB
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
=== STAR arkmap type === | === STAR arkmap type === | ||
{{SPARQL2|SELECT ?item ?itemLabel | {{SPARQL2|query=SELECT ?item ?itemLabel | ||
WHERE | WHERE | ||
{ | { |
Revision as of 21:57, 18 July 2020
Simple Queries
These basic queries help to understand SPARQL and the Wikibase RDF format.
Ships
SELECT ?item ?itemLabel
WHERE
{
?item wdt:P1 wd:Q842.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
STAR arkmap type
SELECT ?item ?itemLabel
WHERE
{
?item wdt:P10 "STAR".
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}