RDF::QueryX::Lazy - yeah, all those PREFIX definitions get boring
Contents
Bugs
Please report any bugs to <http://rt.cpan.org/Dist/Display.html?Queue=RDF-QueryX-Lazy>.
Copyright And Licence
This software is copyright (c) 2011 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5
programming language system itself.
Description
This is a fairly trivial subclass of RDF::Query that auto-defines many prefixes for you, so you can be
lazy. It should have most of the common ones in there.
Oh yeah, and if you want, you can pass a key 'lazy' in the RDF::Query %options hash with additional
prefix mappings.
Disclaimer Of Warranties
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
perl v5.40.1 2025-08-12 RDF::QueryX::Lazy(3pm)
Name
RDF::QueryX::Lazy - yeah, all those PREFIX definitions get boring
See Also
RDF::Query.
Synopsis
my $query = RDF::QueryX::Lazy->new(<<SPARQL);
SELECT *
WHERE {
?person foaf:name ?name .
OPTIONAL { ?person foaf:homepage ?page . }
}
SPARQL
