List all synonym groups for a tenant.
(
&self,
tid: TenantId,
)
| 29 | |
| 30 | /// List all synonym groups for a tenant. |
| 31 | pub fn list_synonym_groups( |
| 32 | &self, |
| 33 | tid: TenantId, |
| 34 | ) -> crate::Result<Vec<nodedb_fts::SynonymGroupRecord>> { |
| 35 | self.inner |
| 36 | .list_synonym_groups(tid.as_u64()) |
| 37 | .map_err(|e| inverted_err("list_synonym_groups", e)) |
| 38 | } |
| 39 | } |
nothing calls this directly
no test coverage detected