query-bd3c7cb4a43bfd14a710f1c2fd160062

rq turtle/ttl

A lancer depuis data.idref.fr

Les personnes

PREFIX cidoc: http://www.cidoc-crm.org/cidoc-crm/ PREFIX rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#

SELECT * WHERE { SERVICE https://dataforhumanities.abes.fr/sparql { GRAPH https://dataforhumanities.org/sparql-endpoint/prelib-v1 { ?s rdf:type cidoc:E21_Person . } } }

Use at

# A lancer depuis data.idref.fr
# Les personnes
PREFIX cidoc: <http://www.cidoc-crm.org/cidoc-crm/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT *
WHERE {
  SERVICE <https://dataforhumanities.abes.fr/sparql> {
    GRAPH <https://dataforhumanities.org/sparql-endpoint/prelib-v1> {
      ?s rdf:type cidoc:E21_Person .
    }
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?s"):::projected c3([http://www.cidoc-crm.org/cidoc-crm/E21_Person]):::iri subgraph s1["https://dataforhumanities.abes.fr/sparql"] style s1 stroke-width:4px; v1 --"a"--> c3 end