greaterThan static method

String greaterThan(
  1. String attribute,
  2. dynamic value
)

Filter resources where attribute is greater than value.

Implementation

static String greaterThan(String attribute, dynamic value) =>
    Query._('greaterThan', attribute, value).toString();