User:Rc1959/InformaticsQueriesLookupLists

This is to generate lookup lists which might be used when investigating about a resource used in an application.

Finding instance of (P31) system call (Q722192) edit

About 350 Linux system calls:

SELECT DISTINCT ?subject ?subjectLabel WHERE {
  ?subject wdt:P31* wd:Q722192 .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
order by ?subjectLabel
Try it!

Anything related to port (P1641) edit

"default communication endpoint in TCP, UDP, or other transport protocol"

It is probably simpler to use: https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml

SELECT DISTINCT ?subjectLabel ?object WHERE {
  ?subject wdt:P1641 ?object.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
order by ?subjectLabel
Try it!