You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Follow the security guidance of your own organization, if you receive warnings when accessing the site.
Set the endpoint as http://api.finto.fi/sparql and click enter.
Copy any exdample from the previous Kiwi web-page - or from below.
Click the play-button arrow (Run query), you should get the result of the query at thebottom of the page.
Examples
1 Get all skos:note values in SEKO
# endpoint set at http://api.finto.fi/sparql
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX yso: <http://www.yso.fi/onto/yso-meta/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
# Select any SEKO concept that has a note
SELECT * WHERE {
GRAPH <http://urn.fi/urn:nbn:fi:au:seko:> {
?s skos:note ?note .
}
}