query.send.rq Maven / Gradle / Ivy
select
(us:send(, us:test, ?n) as ?res)
where {
bind (unnest(xt:iota(10)) as ?n)
}
function us:send(?serv, ?fun, ?x){
let ((?r) =
select * where {
service ?serv {
select (eval(?fun, ?x) as ?r) where {}
}})
{?r}
}
function us:test(?x){
?x + 1
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy