"Tables (Find Records)" v0.1.1 fails, only with a particular value

Hello everyone! I have an issue with the piece Tables (Find Records). When searching a particular string, it can’t find any record - except it’s definitely there.

The flow has a trigger from a form submission (webhook). After some other pieces, preparing the request, some data should be created in a pipeline in my CRM. Every other piece works fine.

I created a Table in AP to map form name to an ID.

I added a piece, “Tables (Find Records)”, which at the time of writing is at version 0.1.1. I used a filter to find all the records that matches the form name.

This was the data I tested it with:

{
  "limit": "1",
  "filters": {
    "filters": [
      {
        "field": {
          "id": "CLQkEOfVHHsMBDIVljJAN",
          "name": "Form name",
          "type": "TEXT"
        },
        "value": "Richiesta informazioni LE 25/26",
        "operator": "eq"
      }
    ]
  },
  "table_id": "tdUUyZNriOCwmE5MFWZdf"
}

And it worked just fine. This is the output:

[
  {
    "id": "1pNyLLuWtsIQ976LBdNpV",
    "created": "2025-07-28T10:33:17.636Z",
    "updated": "2025-07-28T10:33:17.631Z",
    "cells": {
      "CLQkEOfVHHsMBDIVljJAN": {
        "fieldName": "Form name",
        "updated": "2025-07-28T10:33:21.502Z",
        "created": "2025-07-28T10:33:19.410Z",
        "value": "Richiesta informazioni LE 25/26"
      },
      "mnRj9Wmsro3drpI60lfz8": {
        "fieldName": "Pipeline ID",
        "updated": "2025-07-28T10:33:21.502Z",
        "created": "2025-07-28T10:33:19.410Z",
        "value": "25"
      }
    }
  }
]

But when the search value becomes “Scarica qui il catalogo Academy 2025/26”, the piece can’t find any records.

{
  "limit": "1",
  "filters": {
    "filters": [
      {
        "field": {
          "id": "CLQkEOfVHHsMBDIVljJAN",
          "name": "Form name",
          "type": "TEXT"
        },
        "value": "Scarica qui il catalogo Academy 2025/26",
        "operator": "eq"
      }
    ]
  },
  "table_id": "tdUUyZNriOCwmE5MFWZdf"
}

Output:

[]

And it’s reproducible: I had some submissions from other forms which worked just fine, finding the right pipeline ID, but when I tested that particular form, the output is always a sad empty array ([]).

Things I thought:

  1. I checked twice that I wrote the exact string in the table. Maybe three times, copy and pasting from the form application or from the run log.
  2. I tried a slight variation of the form name, updating everything accordingly.
  3. The string has some non alphanumeric charactecter (some escaping issues with /)? No, other records in that table has that slash character.
  4. It’s because I’m using equality? I tried with “contains” - nothing changes.
  5. It’s because I set a limit with 1 record? Tried without limit, no changes.
  6. Is there a hidden character limit? The failing record is the longest string of the table (39 chars)

Any help is much appreciated.
Ciao!

Hello @pongiluppif , Welcome to the community :wave:,

Can you try recreating the table step to make sure you use the latest table piece version (v0.2.2), and then test it again?

Hey! I’m sorry I’m soooo late to this. I did not tried exactly the same thing, but I kept using the new table piece version in other flows without issues so it’s probably resolved. Thank you!

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.