Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 941 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 941 Bytes

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!