From 46c3a0697930ec624be90405d97bf5ca1ee687a0 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Wed, 21 Jun 2023 09:28:26 +0000 Subject: [PATCH] fixed comments --- templates/dart/lib/query.dart.twig | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/templates/dart/lib/query.dart.twig b/templates/dart/lib/query.dart.twig index 198e83add..249a5f7db 100644 --- a/templates/dart/lib/query.dart.twig +++ b/templates/dart/lib/query.dart.twig @@ -21,40 +21,22 @@ class Query { _addQuery(attribute, 'notEqual', value); /// Filter resources where [attribute] is less than [value]. - /// - /// [value] can be a single value or a list. If a list is used - /// the query will return resources where [attribute] is equal - /// to any of the values in the list. static String lessThan(String attribute, dynamic value) => _addQuery(attribute, 'lessThan', value); /// Filter resources where [attribute] is less than or equal to [value]. - /// - /// [value] can be a single value or a list. If a list is used - /// the query will return resources where [attribute] is equal - /// to any of the values in the list. static String lessThanEqual(String attribute, dynamic value) => _addQuery(attribute, 'lessThanEqual', value); /// Filter resources where [attribute] is greater than [value]. - /// - /// [value] can be a single value or a list. If a list is used - /// the query will return resources where [attribute] is equal - /// to any of the values in the list. static String greaterThan(String attribute, dynamic value) => _addQuery(attribute, 'greaterThan', value); /// Filter resources where [attribute] is greater than or equal to [value]. - /// - /// [value] can be a single value or a list. If a list is used - /// the query will return resources where [attribute] is equal - /// to any of the values in the list. static String greaterThanEqual(String attribute, dynamic value) => _addQuery(attribute, 'greaterThanEqual', value); /// Filter resources where by searching [attribute] for [value]. - /// - /// A fulltext index on [attribute] is required for this query to work. static String search(String attribute, String value) => _addQuery(attribute, 'search', value);