Query Parameter on People Column Working in API playground but not Postman

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

Hello there @rhalsall and welcome to the community!

I hope you like it here :muscle:

I just tested this and it worked for me:

{"query":"{boards(ids: 1234567890) {items_page(limit: 500, query_params: {rules: [{column_id: \"person\", compare_value: [\"Alex\"], operator: contains_text}]}) { cursor items {id name column_values {text column {title}}}}}}"}

Would you give that a shot?

Let me know how it goes!

Cheers,
Matias

@Matias.Monday Thank you for your assistance that worked great

1 Like

Happy to help @rhalsall !!

1 Like