Skip to content
Snippets Groups Projects
Commit 2b7403f6 authored by esikkala's avatar esikkala
Browse files

Show only unique timespans

parent cd220d70
No related branches found
No related tags found
No related merge requests found
......@@ -151,7 +151,7 @@ class ResultTable extends React.Component {
<TableFooter>
<TableRow>
<TablePagination
colSpan={3}
component="div"
count={results}
rowsPerPage={rowsPerPage}
rowsPerPageOptions={[5]}
......
......@@ -63,8 +63,11 @@ module.exports = {
BIND(REPLACE(STR(?author__id), "http://ldf.fi/mmm/person/", "https://sdbm.library.upenn.edu/names/") AS ?author__sdbmLink)
}
OPTIONAL {
?expression_creation crm:P4_has_time_span ?timespan__id .
?timespan__id rdfs:label ?timespan__prefLabel.
?expression_creation crm:P4_has_time_span ?timespan .
?timespan rdfs:label ?timespan__id .
?timespan crm:P79_beginning_is_qualified_by ?timespan__start .
?timespan crm:P80_end_is_qualified_by ?timespan__end .
BIND (?timespan__id AS ?timespan__prefLabel)
}
OPTIONAL {
?expression_creation crm:P7_took_place_at ?creationPlace__id .
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment