Babel user information
en-N This user has a native understanding of English.
fr-2 Cet utilisateur dispose de connaissances intermédiaires en français.
la-1 Hic usor simplici lingua Latina conferre potest.
Users by language

I am Beleg Tâl. This is my Wikidata page.
Je m'appelle Beleg Tâl. Celui-ci est mon page de Wikidata.

Projects edit

Queries edit

DAB items that match a list of labels edit

SELECT ?item ?itemLabel 
WHERE 
{
  VALUES ?itemLabel {
  "Tales of Bengal"@en
"Talmud"@en
"Tattooing"@en
"Taylor, John"@en
"Tears"@en
"Temptation"@en
"Tennessee River"@en
"Tennyson"@en
"Tetelestai"@en
  }
  ?item rdfs:label ?itemLabel . filter(lang(?itemLabel)="en")
  ?item wdt:P31 wd:Q4167410 . 
} order by ?itemLabel
Try it!

DAB items without labels linked to enWS edit

SELECT ?item ?itemLabel ?itemDescription ?sitelink ?page_titleEN WHERE {
 ?item wdt:P31 wd:Q4167410 . 
  
 ?sitelink schema:isPartOf <https://en.wikisource.org/>;
 schema:about ?item;
 schema:name ?page_titleEN .

 SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
 FILTER(NOT EXISTS {
   ?item rdfs:label ?lang_label.
   FILTER(LANG(?lang_label) = "en")
 })
}
ORDER BY ?sitelink
Try it!

DAB items referring to Wikipedia instead of Wikimedia edit

SELECT ?item ?itemLabel ?itemDescription WHERE {
  VALUES ?dab { wd:Q4167410 wd:Q22808320 }
  ?item wdt:P31 ?dab.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
  VALUES ?itemDescription {
    "Wikipedia disambiguation page"@en
  }
}
Try it!