find method
GET /{version}/database/collections/{collectionName}
Implementation
Future<Object?> find(
{required Object collectionName,
Map<String, Object?>? query,
Map<String, String>? headers}) {
return transport.send(
route: '/{version}/database/collections/{collectionName}',
method: 'GET',
query: query,
headers: headers,
pathParams: <String, Object?>{'collectionName': collectionName},
);
}