Query the Local RDF Service: Minor Query Forms
Learn how to use the ASK and DESCRIBE query forms to query the local RDF service.
ASK
Let’s have a look at the ASK
query form.
Press + to interact
iex> IO.puts (ask_q = read_query("lib/ask.rq").data)iex> result = ask_q |> sparql!iex> result.results
Line 1: We use a simple ASK
query that tests a graph with the graph pattern it supplies. We save this query string as the ...