Filtering a Data Provider on a Relationship _id does not work #16137
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
BUDI-9325 Filtering a Data Provider on a Relationship _id does not work |
Beta Was this translation helpful? Give feedback.
-
Hey @LukiWasTaken - Thanks for providing your app-export. There's some fine details here that think have been missed. Looking at your app, you're trying to filter a data provider on But looking at your table The issue stems from Replacing the In Summary - |
Beta Was this translation helpful? Give feedback.
Hey @LukiWasTaken - Thanks for providing your app-export.
There's some fine details here that think have been missed.
Looking at your app, you're trying to filter a data provider on
bereich.ID
, wherebereich.ID
equalsro_ta_cee48524194048[....]
But looking at your table
bereich
,bereich.ID
equals1
The issue stems from
_id
andID
being used interchangeably.bereich.ID
is an AutoColumn that you've added, which is effectively a serial primary key, whereas every Budibase table regardless of the use of an AutoColumn ID, has a more complex_id
which is what you've used in the filter.Replacing the
_id
you've passed into the filter with1
should resolve your issue. You should also be sure to …