Hello, i’ve got a question regarding the create_doc mutation.
If the location is set to a board can you not define the document name?
Whereas if you set it in the workspace it lets you define it
mutation CreateDoc($itemId: ID!, $columnId: String!){
create_doc(
location: {
board: {
item_id: $itemId
column_id: $columnId
}
}
)
{id}
}