User:Una tantum/Queries Tourer: Difference between revisions

From Wikidata
Jump to navigation Jump to search
Una tantum (talk | contribs)
Created page with "{{SPARQL|query= #elementi Wikidata con TourER ID e voce su Wikipedia SELECT ?item ?itemLabel ?itemDescription ?tourerid ?sitelink_it ?sitelink_en ?sitelink_fr WHERE { ?item wdt:P4133 ?tourerid. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } optional { ?sitelink_it schema:about ?item; schema:isPartOf <https://it.wikipedia.org/> . } optional { ?sitelink_en schema:about ?item; schem..."
 
m מקף moved page User:Patafisik/Queries Tourer to User:Una tantum/Queries Tourer: Automatically moved page while renaming the user "Patafisik" to "Una tantum"
 
(No difference)

Latest revision as of 11:44, 9 July 2024

#elementi Wikidata con TourER ID e voce su Wikipedia 
SELECT ?item ?itemLabel ?itemDescription ?tourerid ?sitelink_it ?sitelink_en ?sitelink_fr WHERE {
  ?item wdt:P4133 ?tourerid.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  optional {
      ?sitelink_it schema:about ?item;
                schema:isPartOf <https://it.wikipedia.org/> .
    }
  optional {
      ?sitelink_en schema:about ?item;
                schema:isPartOf <https://en.wikipedia.org/> .
    }
  optional {
      ?sitelink_fr schema:about ?item;
                schema:isPartOf <https://fr.wikipedia.org/> .
    }
}
order by xsd:integer(?tourerid)
Try it!