The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catmandu::Store::ElasticSearch::CQL - Converts a CQL query string to a ElasticSearch query hashref

SYNOPSIS

    $es_query = Catmandu::Store::ElasticSearch::CQL
        ->new(mapping => $cql_mapping)
        ->parse($cql_query_string);

DESCRIPTION

This package currently parses most of CQL 1.1:

    and
    or
    not
    prox
    prox/distance<$n
    srw.allRecords
    srw.serverChoice
    srw.anywhere
    cql.allRecords
    cql.serverChoice
    cql.anywhere
    =
    scr
    =/fuzzy
    scr/fuzzy
    <
    >
    <=
    >=
    <>
    exact
    all
    any
    within

METHODS

parse

Parses the given CQL query string with CQL::Parser and converts it to a ElasticSearch query hashref.

parse_node

Converts the given CQL::Node to a ElasticSearch query hashref.

TODO

support cql 1.2, more modifiers (esp. all of masked), sortBy, encloses

SEE ALSO

CQL::Parser.