Hi, I’m sure I am missing something obvious but I have this code which works fine in the API playground
{
boards(ids: 12345678) {
items_page(
limit: 500
query_params: {rules: [{column_id: “people8”, compare_value: [“Alex”], operator: contains_text}]}
) {
cursor
items {
id
name
column_values {
column {
title
}
text
}
}
}
}
}
but replicated in Postman
{
“query”: “query { boards (ids: 12345678) { items_page (limit:500, query_params: {rules: [{column_id: “people8”, compare_value: [“Alex”], operator: contains_text}]}) { cursor items { id name column_values { column{title} text}}}}”
}
I get a 500 Internal Server error,
Can anybody help Thanks