Set whether to include deleted vertices. When true, vertices marked as deleted will be included in the graph. This is useful for showing conflict content or full history.
(mut self, include: bool)
| 93 | /// When true, vertices marked as deleted will be included in the graph. |
| 94 | /// This is useful for showing conflict content or full history. |
| 95 | pub fn include_deleted(mut self, include: bool) -> Self { |
| 96 | self.include_deleted = include; |
| 97 | self |
| 98 | } |
| 99 | |
| 100 | /// Set the maximum number of vertices to retrieve. |
| 101 | /// |
no outgoing calls