greaterThan method

DetaQuery greaterThan(
  1. num value
)

Check the content of key is greater than value.

Implementation

DetaQuery greaterThan(num value) {
  return _createQuery(value, '?gt');
}