Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 501 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 501 Bytes

SemanticGraphQL

Proof of concept to map from DbPedia's SPARQL endpoint to a GraphQL API using the Sangria Framework.

Example Query:

query {
  programmingLanguages {
    uri,
    name,
    designers
  }
}

Running the example

  1. Clone this repo
  2. From the root directory run sbt run
  3. Open http://localhost:9000/graphiql and try the query from above.

Example Graphiql