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

x.jenax-arq-algebra.5.2.0-1.source-code.tmp.sparql Maven / Gradle / Ivy

The newest version!


/*
 Inference / Transformation rules for normalizing convenience constructs of
 User Defined Functions

 * o:simpleDefinition ("STR(?x)" "x") ->
 * 
 * o:definition [ o:expr "STR(?x)" ; o:paramList ("x") ]

PREFIX o:  .
INSERT {
  ?s
    o:definition [
      o:expr ?e ;
      o:paramList ?pl ;
    ] ;
  .
}
WHERE {
  ?s
    a o:UserDefinedFunction ;
    a o:simpleDefinition [
      rdf:first ?e ;
      rdf:rest ?pl
    ]
}
*/

SELECT * { }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy