The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Query - Basic Description of Filters on Shopify

DESCRIPTION

Queries describe Shopify filters that can be put on get requests. This allows them to be translated into local database queries for testing purposes.

The following queries exist:

WWW::Shopify::Query::LowerBound

Specifies a lower bound on the specified field. An example of this is WWW::Shopify::Model::Product's created_at_min query, which links to the created_at field.

WWW::Shopify::Query::UpperBound

As above, except an upper bound.

WWW::Shopify::Query::Enum

A query that states that a field can be equal to one of the specified enumerations.

WWW::Shopify::Query::Match

A query that states that the specified field must exactly equal the input, though there is no restriction on what this input might be.

WWW::Shopify::Query::MultiMatch

A query that states that the specified field must equal any element in the input, though there is no restriction on what this input might be.

WWW::Shopify::Query::Custom

A query that takes a sub that details how to handle the query.