User Documentation
atfinity
Search
⌃
K
Links
Search
⌃
K
🚀
Atfinity: No-Code Process Orchestration
Guides
Getting Started
Advanced Topics
Troubleshooting
Glossary
Rule Language (RuLA)
ℹ
What is RuLa?
Declarations
Expressions
Operators
Boolean Operators
Date Operators
Known Operators
List Operators
[ , ] (create)
[] (access)
in
not in
contains
contains any
contains only
COUNT
SORT
CUSTOM_MAX
REVERSE
FIRST_ELEMENT
ALL
SOME
UNION (or |)
SET_DIFFERENCE
INTERSECTION
MAP
FILTER
FILTER_FALSE
FILTER_UNKNOWN
Dictionary Operators
Mathematical Operators
String Operators
Special Operators
Conditional Expressions
Comments
Information about the case
Accessing the outcome instance
Recipes
Document XML (ADX)
ℹ
What is ADX?
ADX Elements
Jinja Templating
API
ℹ
What is the Atfinity API?
Generate API Keys
API Documentation
Calling your APIs within Cases
External Data Sources (e.g. CRM)
Deploying
Deploying on-site
Management commands
Security Logging
LDAP User Backend
Single Sign On
Integrations
Avaloq
Worldcheck
Releases
Release Schedule
Release Notes
Powered By
GitBook
FILTER
Description
With
FILTER
you can remove certain elements from a list.
Examples
FILTER([true, true, false], true)
This filters out all the
true
values in the list evaluating to
[false]
.
FILTER([1, 4, 2, 1, 3, 1, 4], 4)
This removes
4
from the list evaluating to
[1, 2, 1, 3, 1]
.
Previous
MAP
Next
FILTER_FALSE
Last modified
2yr ago