Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Wikidata label service in federated queries

I'm wondering if it is possible to use Wikidata label service in a federated query. E.g., the following query

# Query from a local SPARQL enpoint

select ?item ?itemLabel
where {
    SERVICE <https://query.wikidata.org/sparql> {
        ?item wdt:P31 wd:Q146.
        SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }

}

returns empty ?itemLabels. How can I get also ?itemLabels in my resultset?

like image 243
floatingpurr Avatar asked Mar 06 '23 04:03

floatingpurr


2 Answers

You could also use the manual mode, it's just one line more in your case:

PREFIX       wdt:  <http://www.wikidata.org/prop/direct/>
PREFIX        wd:  <http://www.wikidata.org/entity/>
PREFIX        bd:  <http://www.bigdata.com/rdf#>
PREFIX  wikibase:  <http://wikiba.se/ontology#>
PREFIX      rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT * {
  SERVICE <https://query.wikidata.org/sparql> {
    ?item wdt:P31 wd:Q146
    SERVICE wikibase:label { bd:serviceParam wikibase:language "it". ?item rdfs:label ?label }
  }
}

Try on FactForge

like image 179
Stanislav Kralin Avatar answered Mar 10 '23 17:03

Stanislav Kralin


Include some of the things that are nominally optional... Here's the full query I just ran through URIBurner.com, and its results.

PREFIX       wdt:  <http://www.wikidata.org/prop/direct/>
PREFIX        wd:  <http://www.wikidata.org/entity/>
PREFIX        bd:  <http://www.bigdata.com/rdf#>
PREFIX  wikibase:  <http://wikiba.se/ontology#>

SELECT *
WHERE
  {
    SERVICE <https://query.wikidata.org/sparql>
      {
        SELECT ?item ?itemLabel 
        WHERE 
          {
            ?item wdt:P31 wd:Q146 .
            SERVICE wikibase:label
              { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
          }
      }
  }
like image 26
TallTed Avatar answered Mar 10 '23 18:03

TallTed