logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

RDF::QueryX::Lazy - yeah, all those PREFIX definitions get boring

Author

       Toby Inkster <tobyink@cpan.org>.

Bugs

       Please report any bugs to <http://rt.cpan.org/Dist/Display.html?Queue=RDF-QueryX-Lazy>.

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

See Also