NAME

Mongoose::Document - a Mongoose document role

SYNOPSIS

package Person;
use Moose;
with 'Mongoose::Document';
has 'name' => ( is => 'rw', isa => 'Str', required => 1 );

SEE ALSO

Read the Mongoose intro or cookbook.