Module:MySPARQL
From MaRDI portal
Documentation for this module may be created at Module:MySPARQL/doc
local sparql = require('SPARQL') -- Load the SPARQL binding
local p = {}
function p.showFirstValue(frame)
local sparqlQuery = frame.args[1]
local queryResults = sparql.runQuery(sparqlQuery) -- Use the runQuery method
-- Replace "work" with the first SELECT variable in your SPARQL query
return queryResults['results']['bindings'][1]['work']['value']
end
return p