I need to solve an issue when querying a collection from a "Global Relational Variable" multiple select.
I have two models, Credential and ActivePlan with the fields below:
| ActivePlan |
+------------+
| id | (PK)
| Credential |
+--------------+
| id | (PK)
| activePlanId | (FK to ActivePlan id)
Then, I need two panels, a Global Relational Variable that selects multiple ActivePlan items and a List that displays all the Credential items for what the activePlanId field matches the IDs selected from the Global Relational Variable panel.
Using the configuration below, I get a GraphQL validation error: (400 Bad Request) Field "_in" is not defined by type "ActivePlan_filter". Did you mean "_and", "_or", or "id"?
I'm breaking my head around this because I use the same exact filter with multiple select between two Global Relational Variable panels, to filter in the second the selected fields from the first, and it works. I tested the previous setup, changing the second panel from a List to a Global Relational Variable, and the query works. What am I missing here?
Useful Context: I installed Directus over an existing database, and I don't manage the schema from Directus. The relational field between Credentials -> Active Plan is configured properly in Directus UI.
Thanks in advance!

