Skip to content

Data, notebooks and code related to the GOLEM triple store

Notifications You must be signed in to change notification settings

GOLEM-lab/triple_store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Golem Triple Store repository

Here, you will find data, code and notebooks related to the GOLEM lab triple store.

GOLEM predicates

These are the predicates that are currently available: screenshot

Example Queries

PREFIX golem: <https://golemlab.eu/graph/> 
SELECT ?o (COUNT(?o) as ?oCount) WHERE
{
  ?s golem:fandom "Biohazard"  .
  ?s golem:language ?o  .
}

GROUP BY ?o
ORDER BY DESC(?oCount)

Try me!

PREFIX golem: <https://golemlab.eu/graph/> 
SELECT ?o WHERE
{
  ?s golem:keyword "Depression" .
  ?s golem:language  "Deutsch" .
  ?s golem:title ?o .
}

Try me!

PREFIX golem: <https://golemlab.eu/graph/>
SELECT (COUNT(?s) as ?sCount) WHERE {
	?s golem:fandom "Star Trek: Voyager" .
	?s golem:socialRelationships ?rel .
   	FILTER(CONTAINS(?rel, 'Janeway')||CONTAINS(?rel, 'Kathryn') )
}

Try me!

About

Data, notebooks and code related to the GOLEM triple store

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published