Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.82 KB

README.md

File metadata and controls

33 lines (23 loc) · 1.82 KB

Knowledge is graphs

The purpose of this repository is to collect sample queries for discovering HDF-related information in the Wikidata knowledge graph.

Relevant entities

Relevant properties

Example

List subjects that are capable of reading or writing HDF:

SELECT DISTINCT ?x ?xLabel ?url WHERE {
  { ?x wdt:P1072 wd:Q1069215 . }       # Something that can read HDF
  UNION
  { ?x wdt:P1073 wd:Q1069215 . }       # Something that can write HDF
  
  OPTIONAL { ?x wdt:P856 ?url. }       # Official website

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Try it!