# Find anniversary specs
#
# cwm --rdf tr.rdf --n3 --filter=happy.n3 --quiet
#     @prefix : <happy.n3#> .
#    
#    "Happy Birthday "     :to "Resource Description Framework (RDF) Model and Syntax Specification" .
#




@prefix dc: <http://purl.org/dc/elements/1.1/>.
@prefix time: <http://www.w3.org/2000/10/swap/time#>.

{ ?x dc:date ?d.
  "" time:gmTime ?now.
  ?d time:month [ is time:month of ?now ].
  ?d time:day  [ is time:day of ?now ].
  ?x dc:title ?t
} => { "Happy Birthady " <#to> ?t }.

