Knowledge-Graph-Hub / kg-covid-19

An instance of KG Hub to produce a knowledge graph for COVID-19 response.
https://github.com/Knowledge-Graph-Hub/kg-covid-19/wiki
BSD 3-Clause "New" or "Revised" License
79 stars 26 forks source link

Use named graphs by source for triplestore deployment? #282

Open matentzn opened 4 years ago

matentzn commented 4 years ago

It would be great, for metadata reasons (source version etc) to use named graphs properly. Right now when you query for named graphs:

SELECT DISTINCT ?g 
WHERE {
  GRAPH ?g { ?s ?p ?o }
}

You get only a single one. What would be cool: One named graph per source, and then adding version information etc to that named graph. What do you think? This way you can also (if you want!) Restrict certain queries to incorporate only particular named graphs, which seems interesting to me.