query-8cd1b882629792750b2c396012c42a16

rq turtle/ttl

Skibsemner med IMO nummer og evt. kategori_for_skibsnavn

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?skib ?skibLabel ?skibDescription ?IMO_skibsnummer ?kategori_for_skibsnavnLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
  ?skib wdt:P458 ?IMO_skibsnummer.
  MINUS { ?skib wdt:P31 wd:Q4167836. }
  OPTIONAL { ?skib wdt:P7782 ?kategori_for_skibsnavn. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?IMO_skibsnummer"):::projected v3("?kategori_for_skibsnavn") v1("?skib"):::projected c2(["bd:serviceParam"]):::iri c4(["en"]):::literal c7(["wd:Q4167836"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P458"--> v2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P31"--> c7 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P7782".-> v3 end