queryData abstract method

Future<List> queryData(
  1. String collectionId, {
  2. required Map<String, dynamic> where,
  3. required String orderBy,
  4. bool descending = true,
  5. int? limit,
  6. int? offset,
  7. List<Object?>? startAfter,
})

Implementation

Future<List> queryData(String collectionId,
    {required Map<String, dynamic> where,
    required String orderBy,
    bool descending = true,
    int? limit,
    int? offset, // appwrite only
    List<Object?>? startAfter});