Hi there.
I want to build an app for monday.com, and would like to read the contents of Workdocs.
I know I can get all docs via:
query {
docs {
id
name
}
}
Then, get the blocks for a specific doc via:
{
docs(ids: "1528931161") {
blocks {
type
content
id
}
}
}
That works for “regular” Workdocs. It doesn’t work for Workdocs that are stored inside a board’s monday Doc column:
There is some documentation about reading the mondy Doc column, but I’m struggling to understand how to read the docs’s blocks?
Also, I’m wondering why does the api not return the workdocs that are stored inside boards, when I query for ALL workdocs. (the first query posted)