Project:SPARQL/examples: Difference between revisions

no edit summary
(Created page with "These SPARQL queries [https://riga-literata.wikibase.cloud/query/ can be used] in the local Query Service. See Wikidata's tutorial for an overview. The custom prefix declarations are required, and do not autocomplete (<code>wd:</code> and <code>wdt:</code>does, but actually queries Wikidata). ==Start== ===All editions with publication date ordered by date=== <SPARQL> PR...")
 
No edit summary
 
Line 7: Line 7:
PREFIX rlwdt: <https://riga-literata.wikibase.cloud/prop/direct/>
PREFIX rlwdt: <https://riga-literata.wikibase.cloud/prop/direct/>


SELECT ?item ?itemLabel ?date ?lcsk
SELECT ?edition ?editionLabel ?date
WHERE  
WHERE  
{
{
   ?item rlwdt:P1 rlwd:Q3033.
   ?edition rlwdt:P1 rlwd:Q3033;
  ?item rlwdt:P49 ?date.
          rlwdt:P49 ?date.
   ?item rlwdt:P41 ?lcsk.
    
SERVICE wikibase:label { bd:serviceParam wikibase:language "la,[AUTO_LANGUAGE]". }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,la,lv". }
}
}
ORDER BY ?date
</SPARQL>
</SPARQL>