diff -r 63e798616b6a -r b1e5ad6b2a29 server/src/app/Repositories/RdfDocumentRepository.php --- a/server/src/app/Repositories/RdfDocumentRepository.php Wed Nov 23 13:49:00 2016 +0100 +++ b/server/src/app/Repositories/RdfDocumentRepository.php Thu Nov 24 14:39:50 2016 +0100 @@ -33,6 +33,7 @@ " ?doc". " ?title". " ?issued". + " ?created". " ?modified". " (group_concat(distinct ?language;separator=\", \") as ?lang) ". " (group_concat(distinct ?publisher;separator=\", \") as ?publishers) ". @@ -41,12 +42,13 @@ " ?doc ?title.". " OPTIONAL {?doc ?language.} ". " OPTIONAL {?doc ?issued.} ". + " OPTIONAL {?doc ?created.} ". " OPTIONAL {?doc ?modified.} ". " OPTIONAL {?doc ?publisher.}". " }. ". " %s". " } ". - " GROUP BY ?uri ?doc ?title ?issued ?modified "; + " GROUP BY ?uri ?doc ?title ?issued ?created ?modified "; const ADDITIONAL_DOC_QUERIES = [ "SELECT".