Module:MySPARQL

From MaRDI portal
Revision as of 09:43, 26 November 2023 by Schubotz (talk | contribs)

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'][0]['work']['value']
end

return p