All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sttl.datashape.result.title.rq Maven / Gradle / Ivy

Go to download

Corese is a Semantic Web Factory (triple store and SPARQL endpoint) implementing RDF, RDFS, SPARQL 1.1 Query and Update.

The newest version!
prefix sh: 
prefix ft: 

template st:title {
    format {
        ft:title.html
        
        st:get(st:service)
        
        if (! ?text, coalesce(st:get(st:param), st:get(st:rdf), ""), "")
        if (! ?text, coalesce(st:get(st:mode),  st:get(st:schema), ""), "")  
        
        if (?text,   coalesce(st:get(st:param), ""), "")
        if (?text,   coalesce(st:get(st:mode), ""), "") 
        
        ?title ?comment
    } 
}
where {
   bind (st:get(st:format) as ?format)
   bind (bound(?format) as ?text)
   bind (coalesce(st:get(st:title), "Shacl") as ?title) 
   bind (coalesce(st:get(st:comment), "")    as ?comment)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy