V 2023-07 items_by_column_values not returning proper items

I have an account where some items on my board can’t be found with the items_by_column_values query in 2023-07.

Note that my column_value in both queries is the exact same, but in 2023-07 I don’t get any items back, but in 2023-10 I get many items back; as text3 in my case I’m using as a key to a different board.

query {
  items_by_column_values (limit:200, board_id:4876931643, column_id:"text3", column_value:"Column Value")
  {
    	id
      name
  
  }
}

BUT essentially the same request in 2023-10 does return a response. 


query {
  items_page_by_column_values (limit:200, board_id:4876931643, columns:{column_id:"text3", column_values:["Column Value"] })
  {
      items{
        id
      name
      }
  }
}

Is there a reason you cannot use the 2023-10 for this call? I’m suspecting make/zapier is in the mix.

Try setting the limit down to 100, just out of curiosity or a hunch i can’t explain (could and likely is irrelevant)

2 Likes

Hello there @timlittletech,

If you can, please send us an email to appsupport@monday.com with this information so we can take a look from there!

Cheers,
Matias

1 Like

@codyfrisch you are correct, I’m using Make for the original integration. I noticed it wasn’t pulling some of the records and so after a little digging and the api playground I found the above.

@Matias.Monday thanks for the info I’ll drop a line to that email.

Thanks!

1 Like