I’m trying to get a list of all nodes in a mind map using the Web SDK. The documentation here: https://developers.miro.com/docs/websdk-reference-mindmap-node gives the following example
// Get all mind map nodes from the board
const items = await miro.board.experimental.get({type: 'mindmap_node'});
However, when I run it on my board, I only get the root node of the mind map. Is this supposed to return all nodes? Am I missing something?
An alternative approach I’ve tried is to use the above to get the root, then use miro.board.experimental.get() to retrieve every child node by id recursively, but I always bump up against rate limiting.