I try to follow the example, but get this error:
{
“errors”: [
{
“message”: “Unexpected end of document”,
“locations”:
}
],
“account_id”: 3010465
}
I attach a screenshot.
Hello classsic,
It looks like you missed the last bracket to close out the mutation code block. Formatting your code would look like the snippet below:
mutation {
create_column (board_id: ###########, title: ‘trabajo’, column_type: auto_number) {
id
}
} <------------ MISSING!!!
See if adding this extra end-bracket helps!