Skip to content

Instantly share code, notes, and snippets.

@ocorcho
Created March 10, 2015 12:25
Show Gist options
  • Save ocorcho/879b1cfd3892ec28e878 to your computer and use it in GitHub Desktop.
Save ocorcho/879b1cfd3892ec28e878 to your computer and use it in GitHub Desktop.
SPARQL queries para obtener la lista de contratos por servicio gestor en el SPARQL endpoint de Zaragoza
PREFIX pproc: <http://contsem.unizar.es/def/sector-publico/pproc#>
PREFIX dcterms: <http://purl.org/dc/terms/>
SELECT DISTINCT ?uri ?titulo ?servicioGestor WHERE
{
?uri a <http://contsem.unizar.es/def/sector-publico/pproc#Contract>;
dcterms:title ?titul;
pproc:managingDepartment ?managingDepartment.
?managingDepartment dcterms:title ?servicioGestor
} ORDER BY ?titulo
PREFIX pproc: <http://contsem.unizar.es/def/sector-publico/pproc#>
PREFIX dcterms: <http://purl.org/dc/terms/>
SELECT DISTINCT ?uri ?titulo ?servicioGestor WHERE
{
?uri a <http://contsem.unizar.es/def/sector-publico/pproc#Contract>;
dcterms:title ?titul;
pproc:managingDepartment ?managingDepartment.
?managingDepartment dcterms:title ?servicioGestor
} ORDER BY ?titulo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment