SPARQL endpoint
The EURIO Knowledge Graph is hosted and published using Virtuoso and can be accessed online via its public SPARQL endpoint.
The SPARQL endpoint provides an access point for querying and exploring the EURIO Knowledge Graph contents using the standardised query language SPARQL.
The selection of pre-defined sample queries available on the help page allows for a quick view on the overall EURIO KG contents and for exploring key aspects of the contained data, while using the full-fledged query editor queries tailored to specific information needs can be formulated.
x
1
2
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>3
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>4
5
SELECT ?project ?projectLabel ?org ?orgLabel ?countryCode6
WHERE {7
# --- Replace the triple patterns below with the EURIO predicates you need ---8
# The endpoint is meant to query the EURIO Knowledge Graph with SPARQL. [2](https://cordis.europa.eu/about/sparql)[1](https://www.cordis.europa.eu/datalab/sparql-endpoint/en)9
10
?project rdfs:label ?projectLabel .11
?org rdfs:label ?orgLabel .12
13
# Example placeholder:14
# ?org <PREDICATE_FOR_COUNTRY_CODE> ?countryCode .15
# ?org <PREDICATE_FOR_PARTICIPATION_IN> ?project .16
}17
LIMIT 20018

