| Beschrijving |
<p><b>Raadpleeg artikels uit de collectie van het Design Museum Gent, met 'Nova' in de titel</b></p><p>De data uit de museumbeheerssystemen
wordt gepubliceerd als linked open data. Voor deze transformatie naar linked data worden de API's van deze beheerssystemen
aangesproken. Deze linked data kan bevraagd worden va SPARQL Queries.<br><br>Deze voorbeeld SPARQL query vraagt 100 titels
op van objecten uit de LDES van het Design Museum Gent en daarbij willen we enkel deze objecten te ontvangen waarbij "NOVA"
voorkomt in de titel. Deze dataset is een voorbeeld van hoe je de uitgebreide collectie van het Design Museum kan bevragen. </p><p>Deze
SPARQL query wordt dagelijks uitgevoerd.</p><p><br></p><p style='box-sizing: border-box; font-family: "Fira Sans"; margin:
0px 0px 1em; color: rgb(35, 51, 58); font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps:
normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows:
2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(240, 249, 253); text-decoration-thickness:
initial; text-decoration-style: initial; text-decoration-color: initial;'><b style='box-sizing: border-box; font-family: "Fira
Sans"; font-weight: bolder;'>Nood aan meer informatie over objecten in de collectie?</b></p><p style='box-sizing: border-box;
font-family: "Fira Sans"; margin: 0px 0px 1em; color: rgb(35, 51, 58); font-size: 14px; font-style: normal; font-variant-ligatures:
normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px;
text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness:
initial; text-decoration-style: initial; text-decoration-color: initial; background-color: rgb(240, 249, 253);'>Voor deze
bevragingen gebruiken we de zoektaal SPARQL.We gebruiken hiervoor de onderstaande query. Je kan die zelf ook aanpassen en
gebruiken op het SPARQL endpoint<span style='box-sizing: border-box; font-family: "Fira Sans";'> </span><a href="https://stad.gent/sparql."
style='box-sizing: border-box; font-family: "Fira Sans"; background-color: transparent; text-decoration: none; color: rgb(0,
125, 179);' target="_blank">https://stad.gent/sparql.</a></p><p>Bekijk ook een voorbeeld query uit de SPARQL-Party:<br><a
href="https://github.com/CoGhent/sparql_party" target="_blank">https://github.com/CoGhent/sparql_party</a><a href="https://github.com/CoGhent/sparql_party"
style="font-size: 0.875rem; background-color: rgb(255, 255, 255);" target="_blank"></a></p><p>Bekijk uitleg over de queries:</p><p>SPARQL
demo Cultural Data Lab: <a href="https://www.youtube.com/watch?v=us-eksPFfGE" target="_blank">https://www.youtube.com/watch?v=us-eksPFfGE</a> </p><p><br></p><p><b>Gebruik
de voorbeeldquery die we voor deze dataset gebruiken</b></p><p></p><pre>PREFIX cidoc: <
http://www.cidoc-crm.org/cidoc-crm/>
SELECT
DISTINCT ?title ?beschrijving FROM <
http://stad.gent/ldes/dmg>
WHERE {
?object cidoc:P102_has_title ?title.
FILTER (regex(?title, "NOVA", "i")).
?object cidoc:P3_has_note ?beschrijving.
} LIMIT 100<br></pre><br><p></p>
|