How can i get the specific column values by a query?

I’m using the following query to take the column values from a specifc item:

query{
items(ids: [XXXX]){
column_values{id}
}
}

But that’s returns me the ids from the column, not the value…
Can someone help me?

@daviperes

Try adding text and/or value to the query:

query{
items(ids: [XXXX]){
column_values{
    id
    text
    value
}
}
}

Jim - Subscribe to The Monday Man
Watch Our Latest Video: A Killer Combo: monday.com, Integromat & Google Sheets - Recurring Tasks Example

Thanks! That worked!!!