Skip to content

Latest commit

 

History

History
36 lines (31 loc) · 523 Bytes

README.md

File metadata and controls

36 lines (31 loc) · 523 Bytes

Sante-GraphQL

Example query

Example query

query {
  resource(
    query: "barack obama"
    context: """{ "name": "http://www.w3.org/2000/01/rdf-schema#label",
    		  "Human": "http://dbpedia.org/ontology/Person"}"""
  	) 
	{
    name
    url
    type
  }
} 
query {
  resource(
    type: "Human", query: "barack obama"
    context: """{ "name": "http://www.w3.org/2000/01/rdf-schema#label",
    		  "Human": "http://dbpedia.org/ontology/Person"}"""
  	) 
	{
    name
    url
    type
  }
}