Search::GIN::Query::Class - Create class-based GIN queries


Search-GIN documentation  | view source Contained in the Search-GIN distribution.

Index


NAME

Top

Search::GIN::Query::Class - Create class-based GIN queries

VERSION

Top

version 0.08

SYNOPSIS

Top

    use Search::GIN::Query::Class;

    my $query = Search::GIN::Query::Class->new(
        class => 'Person',
    );

DESCRIPTION

Top

Creates a class-based GIN query that can be used to search records in a storage.

This is a ready-to-use query that uses class definitions (specifically class, does and blessed) to search through the storage.

METHODS/SUBROUTINES

Top

new

Creates a new query.

ATTRIBUTES

Top

class

The class of the object you want to find.

    my $query = Search::GIN::Query::Class->new(
        class => 'Person',
    );

does

A role consumed by the object you want to find.

    my $query = Search::GIN::Query::Class->new(
        does => 'TheMonkey',
    );

blessed

The name of the package that the object is blessed into.

    my $query = Search::GIN::Query::Class->new(
        blessed => 'Person',
    );

AUTHOR

Top

Yuval Kogman <nothingmuch@cpan.org>

COPYRIGHT AND LICENSE

Top


Search-GIN documentation  | view source Contained in the Search-GIN distribution.