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
}
}
- Clone this repo
- From the root directory run
sbt run
- Open
http://localhost:9000/graphiql
and try the query from above.