sparql.html 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <meta name="description" content="">
  8. <meta name="author" content="">
  9. <title>IPERION - SPARQL</title>
  10. <link rel="icon" type="image/x-icon" href="../img/icon.png">
  11. <link href="../vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
  12. <link href="../vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
  13. <link href="../vendor/simple-line-icons/css/simple-line-icons.css" rel="stylesheet" type="text/css">
  14. <link href="../https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
  15. <link href="../css/pages.css" rel="stylesheet">
  16. <script src="../js/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  17. <script src="../js/ajax/jQuery/jquery-3.2.1.min.js"></script>
  18. <script src="../js/loader/run_prettify.js"></script>
  19. <script src="../js/screensaver.js"></script>
  20. <script src="../js/config.js"></script>
  21. <link href="../css/styles.min.css" rel="stylesheet">
  22. </head>
  23. <body>
  24. <header class="sticky-top">
  25. <nav class="navbar navbar-expand-lg navbar-light bg-white">
  26. <div class="container-fluid">
  27. <div class="navbar-brand">
  28. <a href="../index.html"><img src="../img/Logo.png" width="100" alt="Restore" /></a>
  29. </div>
  30. <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
  31. <span class="navbar-toggler-icon"></span>
  32. </button>
  33. <div class="collapse navbar-collapse justify-content-end" id="navbarNavDropdown">
  34. <ul id="navbar_elements" class="navbar-nav">
  35. </ul>
  36. </div>
  37. </div>
  38. </nav>
  39. </header>
  40. <div id="screensaver"></div>
  41. <main>
  42. <section>
  43. <div class="w-content section-small">
  44. <div class="box-info">
  45. <div class="container-fluid">
  46. <div class="row box-info-title">
  47. <div class="col">
  48. <h1 class="box-info-main-title">Endpoint SPARQL</h1>
  49. </div>
  50. </div>
  51. <div class="row box-info-container">
  52. <div class="col">
  53. <p>SPARQL (SPARQL Protocol and RDF Query Language) is a query language for data represented using the Resource Description Framework (RDF), which describes concepts and relationships about them through the introduction of triples (subject-predicate-object). SPARQL is one of the key elements of semantic Web technologies. It allows information to be extracted from distributed knowledge bases on the web through the construction of queries based on triples.</p>
  54. <p>From this section you can access the SPARQL endpoint of the RESTORE project and build your own queries or consult the example queries made available by the OVI-CNR lab team.</p>
  55. <div id="sparql_button">
  56. <a href="http://iperion.vm.fedcloud.eu:8890/sparql/" class="btn btn-dark" target="_blank">Endpoint SPARQL</a>
  57. </div>
  58. </div>
  59. </div>
  60. <div class="row box-info-title" id="query_esempio">
  61. <div class="col">
  62. <h2 class="box-info-main-title">Sample Queries</h2>
  63. </div>
  64. </div>
  65. <div class="row box-info-container">
  66. <div class="col-12 mb-4">
  67. <div class="query_title">
  68. <p>All objects of type "Painting"</p>
  69. </div>
  70. <div class="query_text">
  71. <pre class="prettyprint lang-sparql sparql-code prettyprinted" style="white-space: pre-wrap;"><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">rdfs:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">www.w3.org/2000/01/rdf-schema#</span><span class="pln">&gt;</span><br /><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">crm:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">www.cidoc-crm.org/cidoc-crm/</span><span class="pln">&gt;</span><br /><span class="kwd">SELECT DISTINCT</span> ?Opere<br /><span class="kwd">WHERE</span> {?soggetto <span class="atv"><br />crm:P2_has_type</span> "Opera d'Arte" ;<br /><span class="atv">rdfs:label</span> ?Opere .<br />}
  72. </pre>
  73. </div>
  74. <div class="text-right">
  75. <a class="btn btn-xl btn-outline-dark" target="_blank" href="http://iperion.vm.fedcloud.eu:8890/sparql/?default-graph-uri=&query=PREFIX+rdfs%3A+%3Chttp%3A%2F%2Fwww.w3.org%2F2000%2F01%2Frdf-schema%23%3E+%0D%0APREFIX+rdf%3A+%3Chttp%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22-rdf-syntax-ns%23%3E+%0D%0APREFIX+crm%3A+%3Chttp%3A%2F%2Fwww.cidoc-crm.org%2Fcidoc-crm%2F%3E+%0D%0A%0D%0ASELECT+DISTINCT+%3FOpere%0D%0AWHERE+%7B%3Fsoggetto+crm%3AP2_has_type+%22Opera+d%27Arte%22+%3B%0D%0Ardfs%3Alabel+%3FOpere+.%0D%0A%7D&should-sponge=&format=text%2Fhtml&timeout=0&debug=on&run=+Run+Query+"> <i class="fa fa-search mr-2"></i> Run </a>
  76. </div>
  77. </div>
  78. <div class="col-12 mb-4">
  79. <div class="query_title">
  80. <p>All documents referring to "Fazzi Antonio Francesco di Orazio"</p>
  81. </div>
  82. <div class="query_text">
  83. <pre class="prettyprint lang-sparql sparql-code prettyprinted" style="white-space: pre-wrap;"><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">rdfs:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">www.w3.org/2000/01/rdf-schema#</span><span class="pln">&gt;</span> <br /><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">crm:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">www.cidoc-crm.org/cidoc-crm/</span><span class="pln">&gt;</span> <br /><span class="kwd">SELECT DISTINCT</span> ?uriDocumento ?Nome_Documento <br /><span class="kwd">WHERE</span> {?soggetto ?proprietà ?oggetto . <br />?oggetto <span class="atv">bif:contains</span> "'Fazzi Antonio Francesco di Orazio'" . <br />?evento <span class="atv">crm:P67_refers_to</span> ?soggetto . <br />?uriDocumento <span class="atv">crm:P92i_was_brought_into_existence_by</span> ?evento; <br /><span class="atv">rdfs:label</span> ?Nome_Documento <br />}
  84. </pre>
  85. </div>
  86. <div class="text-right">
  87. <a class="btn btn-xl btn-outline-dark" target="_blank" href="http://iperion.vm.fedcloud.eu:8890/sparql/?default-graph-uri=&query=PREFIX+rdfs%3A+%3Chttp%3A%2F%2Fwww.w3.org%2F2000%2F01%2Frdf-schema%23%3E++%0D%0APREFIX+crm%3A+%3Chttp%3A%2F%2Fwww.cidoc-crm.org%2Fcidoc-crm%2F%3E+%0D%0A%0D%0ASELECT+DISTINCT+%3FuriDocumento+%3FNome_Documento%0D%0Awhere+%7B%3Fsoggetto+%3Fpropriet%C3%A0+%3Foggetto+.%0D%0A%3Foggetto+bif%3Acontains+%22%27Fazzi+Antonio+Francesco+di+Orazio%27%22+.%0D%0A%3Fevento+crm%3AP67_refers_to+%3Fsoggetto+.%0D%0A%3FuriDocumento+crm%3AP92i_was_brought_into_existence_by+%3Fevento%3B%0D%0Ardfs%3Alabel+%3FNome_Documento%0D%0A%7D&should-sponge=&format=text%2Fhtml&timeout=0&debug=on&run=+Run+Query+"> <i class="fa fa-search mr-2"></i> Run </a>
  88. </div>
  89. </div>
  90. <div class="col-12 mb-4">
  91. <div class="query_title">
  92. <p>Information about the letters from the Datini correspondence in the Prato State Archives </p>
  93. </div>
  94. <div class="query_text">
  95. <pre class="prettyprint lang-sparql sparql-code prettyprinted" style="white-space: pre-wrap;"><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">rdfs:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">www.w3.org/2000/01/rdf-schema#</span><span class="pln">&gt;</span><br /><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">rdf:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">www.w3.org/1999/02/22-rdf-syntax-ns#</span><span class="pln">&gt;</span> <br /><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">crm:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">www.cidoc-crm.org/cidoc-crm/</span><span class="pln">&gt;</span> <br /><br /><span class="kwd">SELECT DISTINCT</span> ?Segnatura ?Mittente ?Destinatario ?Data_Invio ?Data_Ricezione ?Luogo_Invio ?Luogo_Ricezione ?Materiale ?Dimensioni ?Localizzazione <br /><span class="kwd">WHERE</span> { <br /><span class="kwd">GRAPH</span><span class="pln"> &lt;</span><span class="atn"> http://dev.restore.ovi.cnr.it:8890/aspo/datini</span><span class="pln">&gt;</span> <br />{?soggetto <span class="atv">crm:P25i_moved_by</span> ?eventoMovimento .} <br />?invio <span class="atv">rdfs:subClassOf</span> ?eventoMovimento ; <br /><span class="atv">rdf:type</span> crm:EL2_Send_Letter . <br />?ricezione <span class="atv">rdfs:subClassOf</span> ?eventoMovimento ; <br /><span class="atv">rdf:type</span> crm:EL3_Receive_Letter . <br /><br /><span class="kwd">OPTIONAL</span> {?soggetto <span class="atv">crm:P54_has_current_permanent_location</span> ?uriLocalizzazione . <br />?uriLocalizzazione <span class="atv">rdfs:label</span> ?Localizzazione . } <br /><span class="kwd">OPTIONAL</span> {?soggetto <span class="atv">crm:P45_consist_of</span> ?uriMateriale . <br />?uriMateriale <span class="atv">rdfs:label</span> ?Materiale . } <br /><span class="kwd">OPTIONAL</span> {?soggetto <span class="atv">crm:P43_has_dimension</span> ?uriDimensioni . <br />?uriDimensioni <span class="atv">rdfs:label</span> ?Dimensioni . } <br /><span class="kwd">OPTIONAL</span> {?soggetto <span class="atv">crm:P1_is_identified_by</span> ?uriId . <br />?uriId <span class="atv">rdfs:label</span> ?Segnatura . } <br /><br /><span class="kwd">OPTIONAL</span> {?invio <span class="atv">crm:P4_has_time-span</span> ?time_span_invio . <br />?time_span_invio <span class="atv">rdfs:label</span> ?Data_Invio }<span class="kwd">OPTIONAL</span> {?ricezione <span class="atv">crm:P4_has_time-span</span> ?time_span_ricezione . <br />?time_span_ricezione <span class="atv">rdfs:label</span> ?Data_Ricezione } <br /><br /><span class="kwd">OPTIONAL</span> {?invio <span class="atv">crm:P27_moved_from</span> ?uriLuogoInvio . <br />?uriLuogoInvio <span class="atv">rdfs:label</span> ?Luogo_Invio } <br /><span class="kwd">OPTIONAL</span> {?ricezione <span class="atv">crm:P26_moved_to</span> ?uriLuogoRicezione . <br />?uriLuogoRicezione <span class="atv">rdfs:label</span> ?Luogo_Ricezione } <br /><br /><span class="kwd">OPTIONAL</span> {?invio <span class="atv">crm:P01_has_domain</span> ?dominioInvio . <br />?dominioInvio <span class="atv">crm:P02_has_range</span> ?uriMittente . <br />?uriMittente <span class="atv">rdfs:label</span> ?Mittente } <br /><span class="kwd">OPTIONAL</span> {?ricezione <span class="atv">crm:P01_has_domain</span> ?dominioRicezione . <br />?dominioRicezione <span class="atv">crm:P02_has_range</span> ?uriRicezione . <br />?uriRicezione <span class="atv">rdfs:label</span> ?Destinatario } <br />} <br /><span class="kwd">LIMIT 100</span>
  96. </pre>
  97. </div>
  98. <div class="text-right">
  99. <a class="btn btn-xl btn-outline-dark" target="_blank" href="http://iperion.vm.fedcloud.eu:8890/sparql/?default-graph-uri=&query=PREFIX+rdfs%3A+%3Chttp%3A%2F%2Fwww.w3.org%2F2000%2F01%2Frdf-schema%23%3E+%0D%0APREFIX+rdf%3A+%3Chttp%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22-rdf-syntax-ns%23%3E+%0D%0APREFIX+crm%3A+%3Chttp%3A%2F%2Fwww.cidoc-crm.org%2Fcidoc-crm%2F%3E+%0D%0A%0D%0A%0D%0ASELECT+DISTINCT+%3FSegnatura+%3FMittente+%3FDestinatario+%3FData_Invio+%3FData_Ricezione+%3FLuogo_Invio+%3FLuogo_Ricezione+%3FMateriale+%3FDimensioni+%3FLocalizzazione%0D%0AWHERE+%7B%0D%0AGRAPH+%3Chttp%3A%2F%2Fdev.restore.ovi.cnr.it%3A8890%2Faspo%2Fdatini%3E+%7B%3Fsoggetto+crm%3AP25i_moved_by+%3FeventoMovimento+.%7D%0D%0A%3Finvio+rdfs%3AsubClassOf+%3FeventoMovimento+%3B+%0D%0Ardf%3Atype+crm%3AEL2_Send_Letter+.%0D%0A%3Fricezione+rdfs%3AsubClassOf+%3FeventoMovimento+%3B+%0D%0Ardf%3Atype+crm%3AEL3_Receive_Letter+.%0D%0A%0D%0AOPTIONAL+%7B%3Fsoggetto+crm%3AP54_has_current_permanent_location+%3FuriLocalizzazione+.%0D%0A%3FuriLocalizzazione+rdfs%3Alabel+%3FLocalizzazione+.+%7D%0D%0AOPTIONAL+%7B%3Fsoggetto+crm%3AP45_consist_of+%3FuriMateriale+.%0D%0A%3FuriMateriale+rdfs%3Alabel+%3FMateriale+.+%7D%0D%0AOPTIONAL+%7B%3Fsoggetto+crm%3AP43_has_dimension+%3FuriDimensioni+.%0D%0A%3FuriDimensioni+rdfs%3Alabel+%3FDimensioni+.+%7D%0D%0AOPTIONAL+%7B%3Fsoggetto+crm%3AP1_is_identified_by+%3FuriId+.%0D%0A%3FuriId+rdfs%3Alabel+%3FSegnatura+.+%7D%0D%0A%0D%0AOPTIONAL+%7B%3Finvio+crm%3AP4_has_time-span+%3Ftime_span_invio+.%0D%0A%3Ftime_span_invio+rdfs%3Alabel+%3FData_Invio+%7D%0D%0AOPTIONAL+%7B%3Fricezione+crm%3AP4_has_time-span+%3Ftime_span_ricezione+.%0D%0A%3Ftime_span_ricezione+rdfs%3Alabel+%3FData_Ricezione+%7D%0D%0A%0D%0AOPTIONAL+%7B%3Finvio+crm%3AP27_moved_from+%3FuriLuogoInvio+.%0D%0A%3FuriLuogoInvio+rdfs%3Alabel+%3FLuogo_Invio+%7D%0D%0AOPTIONAL+%7B%3Fricezione+crm%3AP26_moved_to+%3FuriLuogoRicezione+.%0D%0A%3FuriLuogoRicezione+rdfs%3Alabel+%3FLuogo_Ricezione+%7D%0D%0A%0D%0AOPTIONAL+%7B%3Finvio+crm%3AP01_has_domain+%3FdominioInvio+.%0D%0A%3FdominioInvio+crm%3AP02_has_range+%3FuriMittente+.%0D%0A%3FuriMittente+rdfs%3Alabel+%3FMittente+%7D%0D%0AOPTIONAL+%7B%3Fricezione+crm%3AP01_has_domain+%3FdominioRicezione+.%0D%0A%3FdominioRicezione+crm%3AP02_has_range+%3FuriRicezione+.%0D%0A%3FuriRicezione+rdfs%3Alabel+%3FDestinatario+%7D%0D%0A%7D%0D%0ALIMIT+100&should-sponge=&format=text%2Fhtml&timeout=0&debug=on&run=+Run+Query+"> <i class="fa fa-search mr-2"></i> Run </a>
  100. </div>
  101. </div>
  102. <div class="col-12 mb-4">
  103. <div class="query_title">
  104. <p>Information about people</p>
  105. </div>
  106. <div class="query_text">
  107. <pre class="prettyprint lang-sparql sparql-code prettyprinted" style="white-space: pre-wrap;"><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">rdfs:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">www.w3.org/2000/01/rdf-schema#</span><span class="pln">&gt;</span><br /><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">rdf:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">www.w3.org/1999/02/22-rdf-syntax-ns#</span><span class="pln">&gt;</span> <br /><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">crm:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">www.cidoc-crm.org/cidoc-crm/</span><span class="pln">&gt;</span> <br /><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">schema:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">schema.org/</span><span class="pln">&gt;</span><br /><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">foaf:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">xmlns.com/foaf/0.1/</span><span class="pln">&gt;</span> <br /><span class="kwd">PREFIX</span><span class="pln"> </span><span class="atv">person:</span><span class="pln"> &lt;</span><span class="atv">http://</span><span class="atn">www.w3.org/ns/person#</span><span class="pln">&gt;</span> <br /><br /><span class="kwd">SELECT DISTINCT</span> ?uri ?Id <br />(<span class="kwd">GROUP_CONCAT</span>(<span class="kwd">DISTINCT</span> ?name ;separator='\n') as ?Nome) ?Nome_Proprio ?Nome_di_Famiglia <br />(<span class="kwd">GROUP_CONCAT</span>(<span class="kwd">DISTINCT</span> ?otherName ;separator='\n') as ?Alias) ?Patronimico <br />(<span class="kwd">GROUP_CONCAT</span>(<span class="kwd">DISTINCT</span> ?relative ;separator='\n') as ?Parenti) <br />?Sesso ?Data_di_Nascita ?Luogo_di_Nascita ?Data_di_Morte ?Luogo_di_Morte <br />?Occupazione ?Luogo_Lavoro <br />(<span class="kwd">GROUP_CONCAT</span>(<span class="kwd">DISTINCT</span> ?qualification ;separator='\n') as ?Qualifica) <br />(<span class="kwd">GROUP_CONCAT</span>(<span class="kwd">DISTINCT</span> ?group ;separator='\n') as ?Gruppi) ?BiogHist <br /><span class="kwd">WHERE</span> { <br /><span class="kwd">GRAPH</span> ?graph {?uri <span class="atv">rdfs:label</span> ?label} <br />?uri <span class="atv">foaf:name</span> ?name . <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">crm:P1_is_identified_by</span> ?identificatore . <br />?identificatore <span class="atv">rdfs:label</span> ?Id } <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">foaf:givenName</span> ?Nome_Proprio} <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">foaf:familyName</span> ?Nome_di_Famiglia} <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">schema:alternateName</span> ?otherName } <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">foaf:gender</span> ?Sesso} <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">person:patronymicName</span> ?Patronimico } <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">schema:hasOccupation</span> ?uriOccupazione . <br />?uriOccupazione <span class="atv">rdf:type</span> schema:Occupation; <br /><span class="atv">rdfs:label</span> ?Occupazione } <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">schema:workLocation</span> ?Luogo_Lavoro } <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">schema:honorificPrefix</span> ?qualification} <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">schema:relatedTo</span> ?uriParente . <br />?uriParente <span class="atv">rdfs:label</span> ?relative} <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">crm:P100i_died_in</span> ?Morte . <br />?Morte <span class="atv">crm:P4_has_time-span</span> ?Morte_TS; <br /><span class="atv">crm:P7_took_place_at</span> ?Luogo_D . <br />?Morte_TS <span class="atv">rdfs:label</span> ?Data_di_Morte . <br />?Luogo_D <span class="atv">rdfs:label</span> ?Luogo_di_Morte } <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">crm:P98i_was_born</span> ?Nascita . <br />?Nascita <span class="atv">crm:P4_has_time-span</span> ?Nascita_TS; <br /><span class="atv">crm:P7_took_place_at</span> ?Luogo_B . <br />?Nascita_TS <span class="atv">rdfs:label</span> ?Data_di_Nascita . <br />?Luogo_B <span class="atv">rdfs:label</span> ?Luogo_di_Nascita } <br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">crm:P107i_is_current_or_former_member_of</span> ?uriGroup . <br />?uriGroup <span class="atv">rdfs:label</span> ?group }<br /><span class="kwd">OPTIONAL</span> {?uri <span class="atv">schema:description</span> ?BiogHist } <br />} <br /><span class="kwd">LIMIT</span> 100
  108. </pre>
  109. </div>
  110. <div class="text-right">
  111. <a class="btn btn-xl btn-outline-dark" target="_blank" href="http://iperion.vm.fedcloud.eu:8890/sparql/?default-graph-uri=&query=PREFIX+rdfs%3A+%3Chttp%3A%2F%2Fwww.w3.org%2F2000%2F01%2Frdf-schema%23%3E+%0D%0APREFIX+rdf%3A+%3Chttp%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22-rdf-syntax-ns%23%3E+%0D%0APREFIX+crm%3A+%3Chttp%3A%2F%2Fwww.cidoc-crm.org%2Fcidoc-crm%2F%3E+%0D%0APREFIX+schema%3A+%3Chttp%3A%2F%2Fschema.org%2F%3E+%0D%0APREFIX+foaf%3A+%3Chttp%3A%2F%2Fxmlns.com%2Ffoaf%2F0.1%2F%3E+%0D%0APREFIX+person%3A+%3Chttp%3A%2F%2Fwww.w3.org%2Fns%2Fperson%23%3E%0D%0A%0D%0ASELECT+DISTINCT+%3Furi+%3FId%0D%0A%28group_concat%28distinct+%3Fname+%3Bseparator%3D%27%5Cn%27%29+as+%3FNome%29+%3FNome_Proprio+%3FNome_di_Famiglia+%0D%0A%28group_concat%28distinct+%3FotherName+%3Bseparator%3D%27%5Cn%27%29+as+%3FAlias%29+%3FPatronimico+%0D%0A%28group_concat%28distinct+%3Frelative+%3Bseparator%3D%27%5Cn%27%29+as+%3FParenti%29+%0D%0A%3FSesso+%3FData_di_Nascita+%3FLuogo_di_Nascita+%3FData_di_Morte+%3FLuogo_di_Morte+%0D%0A%3FOccupazione+%3FLuogo_Lavoro%0D%0A%28group_concat%28distinct+%3Fqualification+%3Bseparator%3D%27%5Cn%27%29+as+%3FQualifica%29+%0D%0A%28group_concat%28distinct+%3Fgroup+%3Bseparator%3D%27%5Cn%27%29+as+%3FGruppi%29+%3FBiogHist%0D%0AWHERE+%7B++%0D%0AGRAPH+%3Fgraph+%7B%3Furi+rdfs%3Alabel+%3Flabel%7D+%0D%0A%3Furi+foaf%3Aname+%3Fname+.+%0D%0AOPTIONAL+%7B%3Furi+crm%3AP1_is_identified_by+%3Fidentificatore+.+%0D%0A%3Fidentificatore+rdfs%3Alabel+%3FId+%7D+%0D%0AOPTIONAL+%7B%3Furi+foaf%3AgivenName+%3FNome_Proprio%7D+%0D%0AOPTIONAL+%7B%3Furi+foaf%3AfamilyName+%3FNome_di_Famiglia%7D+%0D%0AOPTIONAL+%7B%3Furi+schema%3AalternateName+%3FotherName+%7D%0D%0AOPTIONAL+%7B%3Furi+foaf%3Agender+%3FSesso%7D+%0D%0AOPTIONAL+%7B%3Furi+person%3ApatronymicName+%3FPatronimico+%7D+%0D%0AOPTIONAL+%7B%3Furi+schema%3AhasOccupation+%3FuriOccupazione+.+%0D%0A%3FuriOccupazione+rdf%3Atype+schema%3AOccupation%3B+%0D%0Ardfs%3Alabel+%3FOccupazione+%7D+%0D%0AOPTIONAL+%7B%3Furi+schema%3AworkLocation+%3FLuogo_Lavoro+%7D%0D%0AOPTIONAL+%7B%3Furi+schema%3AhonorificPrefix+%3Fqualification%7D+%0D%0AOPTIONAL+%7B%3Furi+schema%3ArelatedTo+%3FuriParente+.+%0D%0A%3FuriParente+rdfs%3Alabel+%3Frelative%7D+%0D%0AOPTIONAL+%7B%3Furi+crm%3AP100i_died_in+%3FMorte+.+%0D%0A%3FMorte+crm%3AP4_has_time-span+%3FMorte_TS%3B+%0D%0Acrm%3AP7_took_place_at+%3FLuogo_D+.%0D%0A%3FMorte_TS+rdfs%3Alabel+%3FData_di_Morte+.+%0D%0A%3FLuogo_D+rdfs%3Alabel+%3FLuogo_di_Morte+%7D+%0D%0AOPTIONAL+%7B%3Furi+crm%3AP98i_was_born+%3FNascita+.+%0D%0A%3FNascita+crm%3AP4_has_time-span+%3FNascita_TS%3B+%0D%0Acrm%3AP7_took_place_at+%3FLuogo_B+.+%0D%0A%3FNascita_TS+rdfs%3Alabel+%3FData_di_Nascita+.+%0D%0A%3FLuogo_B+rdfs%3Alabel+%3FLuogo_di_Nascita+%7D+%0D%0AOPTIONAL+%7B%3Furi+crm%3AP107i_is_current_or_former_member_of+%3FuriGroup+.+%0D%0A%3FuriGroup+rdfs%3Alabel+%3Fgroup+%7D%0D%0AOPTIONAL+%7B%3Furi+schema%3Adescription+%3FBiogHist+%7D%0D%0A%7D+%0D%0ALIMIT+100&should-sponge=&format=text%2Fhtml&timeout=0&debug=on&run=+Run+Query+"> <i class="fa fa-search mr-2"></i> Run </a>
  112. </div>
  113. </div>
  114. </div>
  115. </div>
  116. </div>
  117. </div>
  118. </section>
  119. </main>
  120. <footer id="footer" class="footer">
  121. </footer>
  122. <!-- Bootstrap core JavaScript -->
  123. <script src="../vendor/jquery/jquery.min.js"></script>
  124. <script src="../vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
  125. </body>
  126. </html>