(domainId: string, _id: string)
| 266 | } |
| 267 | |
| 268 | export function getNode(domainId: string, _id: string) { |
| 269 | return document.get(domainId, document.TYPE_DISCUSSION_NODE, _id); |
| 270 | } |
| 271 | |
| 272 | export function flushNodes(domainId: string) { |
| 273 | return document.deleteMulti(domainId, document.TYPE_DISCUSSION_NODE); |