-
Notifications
You must be signed in to change notification settings - Fork 4
Distinct
Isaac Olajos edited this page Jan 10, 2024
·
4 revisions
The DISTINCT is a child of Datasources that returns only rows that contain a unique/distinct field value. The DISTINCT is useful for removing data from a Datasource that is not unique based on its source field.
DISTINCT is case sensitive. You can chain other transforms and manipulate the data further to remove this.
None
| Name | Type | Default | Description | Req |
|---|---|---|---|---|
| field | string | "" | the field name to check distinct values against | ✔ |
| enabled | bool | "true" | boolean expression to (en/dis)able the datasource | ✔ |
<FML>
<!-- We used a DATA datasource but any datasource can be used -->
<DATA id="distinctArrivals">
<DISTINCT field="arrivalDayOfWeek"/>
</DATA>
</FML>Framework Markup Language is an open source programming language created by AppDaddy Software Solutions Inc. FML and is licensed under a fair source license agreement and is maintained by a community of developers.
- Quick Start
- Widget Structure
- Layout Basics
- Config
- Navigation
- Authentication
- Server Configuration
- Offline Use
- Resource Guides
-
<FML/>
- <BOX/>
- <CHART/>
- <COLUMN/>
- <DRAWER/>
- <FOOTER/>
- <FORM/>
- <GRID/>
- <HEADER/>
- <LIST/>
- <MAP/>
- <WINDOW/>
- <PAGER/>
- <ROW/>
- <SCROLLER/>
- <SPLITVIEW/>
- <STACK/>
- <TABLE/>
- <TABVIEW/>
- <TREEVIEW/>
- <WEBVIEW/>
Important Concepts