query-3d0fa08ee208b473d62e3725733d00ee
TODO
Use at
- https://query.wikidata.org/sparql
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 DISTINCT ?ship ?shipLabel ?shipClass ?shipClassLabel ?type ?typeLabel
::::WHERE
::::{
:::: # Instance of some ship class
:::: ?ship wdt:P31 ?shipClass .
:::: ?shipClass wdt:P31/wdt:P279* wd:Q559026 .
:::: ?shipClass wdt:P279 ?type.
:::: MINUS {?type wdt:P31 wd:Q559026}
:::: # Not an instance of a ship type that is not a ship class
:::: FILTER NOT EXISTS {
:::: ?ship wdt:P31 ?shipType .
:::: ?shipType wdt:P31/wdt:P279* wd:Q2235308 .
:::: FILTER NOT EXISTS { ?shipType wdt:P31/wdt:P279* wd:Q559026 . }
:::: }
:::: SERVICE wikibase:label {
:::: bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,fr,es,it,de,pl".
:::: }
::::}
::::LIMIT 500
::::