Tests if an attribute is greater than or equal to the given value.

Command Syntax

attr(attribute).ge(value)

Usage

const d = new Dynaflo(config);

d.table('Movies')
  .query({genre: 'action'})
  .where(attr('year').ge(2015)))
  .run()
  .then(data => {
    // returns all action movies made in or after 2015
  });

AWS Doc Links

Condition Expressions