query-f55faa58357e7fee712c80be46104712

rq turtle/ttl

LoCFDD3. Return a list of all items for which there is a LocFDD ID

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?format ?formatLabel ?fdd

WHERE {

  ?format wdt:P3266 ?fdd .

  SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .

}
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?fdd"):::projected v1("?format"):::projected c3(["bd:serviceParam"]):::iri c5(["en"]):::literal v1 --"wdt:P3266"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end