From: <tob...@we...> - 2006-11-28 08:40:21
|
Hi. Yes FILTER queries are supported but we have still some problems with complex filters and filters that contain type casts. You should have no problems with "FILTER (?date >= 12345 && ?date <= 54321)" . Regards Tobias > A quick question if I may, are FILTER queries currently supported? An example: > > PREFIX ll: <http://www.gsowww.uklinux.net/librarylinks/vocabulary#> > SELECT * > WHERE { ?url ll:title ?title . > ?url ll:abstract ?abstract . > ?url ll:date ?date . FILTER (?date >= 12345 && ?date <= 54321) . > ?url ll:publisher ?publisher } > ORDER BY DESC(?date) > |