query-fe8e7c1a20d5ea57cd0ef6052a192fb5

rq turtle/ttl

Per buscar un mot a l'etiqueta, rĂ pidament:

Use at

PREFIX mwapi: <http://wikiba.se/ontology#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?label
WHERE
{
  SERVICE wikibase:mwapi
  {
    bd:serviceParam wikibase:endpoint "www.wikidata.org";
                    wikibase:api "Generator";
                    mwapi:generator "search";
                    mwapi:gsrsearch "inlabel:platja"@ca;
                    mwapi:gsrlimit "max".
    ?item wikibase:apiOutputItem mwapi:title.
  }
  ?item rdfs:label ?label. FILTER( LANG(?label)="ca" )

}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?label"):::projected c5(["www.wikidata.org"]):::literal c13(["max"]):::literal c11([sinlabel:platja^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal c9(["search"]):::literal c3(["bd:serviceParam"]):::iri c15(["mwapi:title"]):::iri c7(["Generator"]):::literal f0[["?label = 'ca'"]] f0 --> v1 subgraph s1["http://wikiba.se/ontology#mwapi"] style s1 stroke-width:4px; c3 --"mwapi:endpoint"--> c5 c3 --"mwapi:api"--> c7 c3 --"mwapi:generator"--> c9 c3 --"mwapi:gsrsearch"--> c11 c3 --"mwapi:gsrlimit"--> c13 v2 --"mwapi:apiOutputItem"--> c15 end v2 --"rdfs:label"--> v1