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

NAME

Webservice::InterMine::Constraint::List

SYNOPSIS

    $query->where(Gene => {in => "Some List"});
    $query->where(Gene => {not_in => "Some List"});
    $query->where(Gene => $service->get_list("Some List"));
    $query->where("Gene", "IN", "Some List");
    $query->where("Gene", "NOT IN", "Some List");

DESCRIPTION

Constraints that require an object to be contained in a pre-existing list in the webservice.

Valid operators are "IN" and "NOT IN".