query-c7250eafb3ae0ed994a2907d093a3ed5

rq turtle/ttl

Anything related to port (P1641)"default communication endpoint in TCP, UDP, or other transport protocol" https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtmlIt is probably simpler to use:

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?subjectLabel ?object WHERE {
  ?subject wdt:P1641 ?object.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
order by ?subjectLabel

Query found at

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