Fetch an object by id.
(
&self,
object_type: &str,
id: &str,
)
| 276 | |
| 277 | /// Fetch an object by id. |
| 278 | pub async fn get( |
| 279 | &self, |
| 280 | object_type: &str, |
| 281 | id: &str, |
| 282 | ) -> PersistenceResult<Option<ObjectRecord>> { |
| 283 | store_dispatch!(self.get(object_type, id)) |
| 284 | } |
| 285 | |
| 286 | /// Fetch an object by name within an object type. |
| 287 | pub async fn get_by_name( |
no outgoing calls