An API response field named prefix is discarded from table fields

I have an API that has several fields and two of them are prefix and prefixId
For some reason - the fields are discarded when building a table on top of the response

I tried transforming the API result and copy the "prefix" field to a new field but that doesn't work either.
Any workaround for that?


1 Like

This is very odd - have you tried manually creating those columns or was that not working either?

It doesn't work. It's like the field doesn't exist on the object

When you create a custom column, does it show up in {{ customSourceRow.prefix }} within the value field?

Connecting this other post with a similar behavior for visibility.

@Udi_Ben_Amitai, are these values available in all of the arrays of the data source?

My suspicion is that this may be at the source of the issue, but just a blind guess

1 Like

@MiguelOrtiz - Nice! That is indeed the issue.
I added a projection that returns a single item that has all fields and then I created the table and removed the projection.

Thank you!

3 Likes