This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT ?title ?authorName ?publicationDate | |
WHERE { | |
?item wdt:P577 ?publicationDate ; # Veröffentlichungsdatum | |
wdt:P1476 ?title ; # Titel des Werkes | |
wdt:P50 ?author . # Autor des Werkes | |
FILTER (?publicationDate > "2010-12-31"^^xsd:dateTime) # Datum nach 2010 | |
?item wdt:P921 ?topic . # Thema oder Schlagwort des Werkes | |
?topic rdfs:label ?topicLabel . |