Skip to main content

Can´t create column

  • April 21, 2020
  • 1 reply
  • 2947 views

I try to follow the example, but get this error:
{
“errors”: [
{
“message”: “Unexpected end of document”,
“locations”:
}
],
“account_id”: 3010465
}
I attach a screenshot.

This topic has been closed for replies.

1 reply

andrew.shatz
  • Participating Frequently
  • April 23, 2020

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!