Skip to content

Fluent query API for SPARQL based on the Jena framework.

License

Notifications You must be signed in to change notification settings

stoewer/fluent-sparql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Coverage Status

About Fluent SPARQL

This project aims to provide an interface for creating and executing SPARQL queries using a DSL-like fluent API that allows to write code that resembles the SPARQL syntax, such as:

Query q = sparql.select("name")
                    .add("?a", RDF.type, FOAF.Person)
                    .add("?a", FOAF.givenname, "Frodo")
                    .add("?a", FOAF.family_name, "?name")
                    .filter("?name").regexp("^Baggins$")
                .orderByAsc("name")
                .limit(1)
                .query();

Status

This project is still work in progress and at this time there is no stable release!

About

Fluent query API for SPARQL based on the Jena framework.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages