You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE OR REPLACEFUNCTIONpublic._affected_entity_entity_name(ae public.affected_entity)
RETURNS TEXTAS $$
DECLARE
entity_name TEXT;
BEGINSELECT name INTO entity_name
FROMpublic.entityWHERE id =ae.entity_idLIMIT1;
RETURN entity_name;
END;
$$ LANGUAGE plpgsql;
but I can not filter it as well. if we add support to filtering Computed Fields, maybe it will be a good enough workaround, and easier to implement
I have a table with many to one relationship (affected_entity -> entity)
When I query affected_entity, I want to filter by the fields of entity table.
But the only filters I have are like:
affected_entityFilter
Fields
id: UUIDFilter
entity_id: UUIDFilter
In the affected_entity node I can access entity, but without filters
Can I help in any way?
The text was updated successfully, but these errors were encountered: