codeant-ai-for-open-source[bot] commented on PR #38470:
URL: https://github.com/apache/superset/pull/38470#issuecomment-4033141760

   ## **Sequence Diagram**
   
   This PR lets filter authors choose a match type for Select filters and, at 
runtime, uses that configuration to switch between exact IN filtering and 
text-based ILIKE filtering driven by a free-text input.
   
   ```mermaid
   sequenceDiagram
       participant Author
       participant DashboardConfig
       participant Viewer
       participant SelectFilter
       participant QueryEngine
   
       Author->>DashboardConfig: Configure Select filter match type (e.g. 
Contains text)
       DashboardConfig->>DashboardConfig: Save operatorType for the filter
   
       Viewer->>SelectFilter: Enter search text in Select filter
       SelectFilter->>SelectFilter: Decide IN vs ILIKE and build ExtraFormData
       SelectFilter->>QueryEngine: Request data with configured match operator
       QueryEngine-->>SelectFilter: Return rows matching filter
       SelectFilter-->>Viewer: Update charts and filter state
   ```
   
   ---
   *Generated by [CodeAnt AI](https://codeant.ai)*
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to