Hi,
I use the following code to update doc blocks using the SDK:
monday.execute('updateDocBlock', variables)
where variables is of course an object with ID and content.
According to the docs (monday.execute) it should return a promise and should be awaited. However when I await it, the update is sent, but the promise is never resolved. The execution get stuck in the function, so to make it work, the function cannot be awaited.
It looks to me like a bug.