These pages are deprecated. Please go to Corese Web Site
Corese is a Semantic Web Factory implementing W3C RDF, RDFS, SPARQL 1.1 Query & Update, SPARQL Rules for RDF.
Contact: olivier.corby at inria.fr
New version based on kgram. March 2012.
java -jar corese-3.0.7.jar
Download
Documentation
SPARQL 1.1 W3C Test cases
Edelweiss coauthor network 2007-2011, computed by a construct-where SPARQL 1.1 Query on bibtex2RDF
prefix b: <http://www.edutella.org/bibtex#>
prefix dc: <http://purl.org/dc/elements/1.1/>
prefix vcard: <http://www.w3.org/2001/vcard-rdf/3.0#>
construct {?aa ?r ?bb}
where {
select * (count(?doc) as ?c)
(uri(concat(?na, ".", ?fa)) as ?aa)
(uri(concat(?nb, ".", ?fb)) as ?bb)
(concat(b:coauthor, ":", ?c) as ?r)
where {
?doc dc:creator [rdfs:member ?a; rdfs:member ?b]
?a vcard:N [vcard:Given ?na; vcard:Family ?fa]
?b vcard:N [vcard:Given ?nb; vcard:Family ?fb]
filter(?fa < ?fb)
}
group by ?fa ?fb
having(?c >=6)
}
