List objects by type.
(
&self,
object_type: &str,
limit: u32,
offset: u32,
)
| 304 | |
| 305 | /// List objects by type. |
| 306 | pub async fn list( |
| 307 | &self, |
| 308 | object_type: &str, |
| 309 | limit: u32, |
| 310 | offset: u32, |
| 311 | ) -> PersistenceResult<Vec<ObjectRecord>> { |
| 312 | store_dispatch!(self.list(object_type, limit, offset)) |
| 313 | } |
| 314 | |
| 315 | /// List objects by type and application-owned scope. |
| 316 | pub async fn list_by_scope( |
no outgoing calls