There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

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".