# Data sources

The data sources you add to an app serve as [object](https://docs.appfarm.io/reference/platform-concepts/objects) storage. An *object class data source* is based on an [object class](https://docs.appfarm.io/reference/data-model/object-classes) defined in the [Data model](https://docs.appfarm.io/reference/data-model). It can be [database connected](#database-connected-and-runtime-only-data-sources), where the contained objects are a direct representation of the data read from the database. A data source can also be [runtime only](#database-connected-and-runtime-only-data-sources), allowing you to work with objects in a temporary state before storing them in the database. For bulk operations, you might need [data connectors](#data-connectors) which offer more efficient direct access to the database.

Other types of data sources are also available, for [calendars](#calendar-data-sources) and [enums](#enum-data-sources). There are also a number of [built-in data sources](https://docs.appfarm.io/reference/apps/data/..#built-in-data-sources) in every app.

## Database-connected and runtime-only data sources

Apps use primarily two types of object class data sources, *database-connected* and *runtime-only*. In general, database-connected data sources are used when you need to read data directly from the database, while runtime-only data sources are used as temporary storage to create and edit objects before they are saved to the database.

By default, an object class data source is *database connected*. A selection of objects are automatically read into the database according to the **Filter** property (or all objects if **Read All Objects** is selected) and the data source will continuously monitor this [filter](https://docs.appfarm.io/reference/platform-concepts/filters). Objects created, updated, and deleted in the data source are persisted immediately.

{% hint style="info" %}
**Good to know**

If you create a new object in a database-connected data source, and the new object does not qualify for the data source according to the filter, the object will be created and persisted, but will not be present in the data source.
{% endhint %}

However, if you want to work with data in a temporary state you can use a *runtime-only* data source. This can be useful for importing data or storing edits before saving the changes to the database. A data source is made runtime-only by selecting **Runtime Only** in the [data source properties](#general-properties).

Objects can be created, read, updated, and removed from runtime-only data sources, but these operations must be done explicitly using action nodes. One exception is creating objects, which can be made automatic in single-cardinality data sources by selecting **Auto Create** in the data source properties. When auto create is enabled, a new object will be created in the data source on app load and when the data source is emptied by removing an object. To save a new or updated objected to the database, you must use the [Persist objects action node](#persist-objects).

{% hint style="info" %}
**Good to know**

If you delete a persisted object from a runtime-only data source it only *removes* the object from the data source. It will not be deleted from the database.
{% endhint %}

Runtime-only data sources are quite performant as they are not continuously communicating with the database. It is recommended to use runtime-only data sources to manage objects when possible, particularly when performing data modifications in iterations. See [How to optimise your app performance](https://docs.appfarm.io/how-to/security-testing-and-deployment/optimize-your-app) for more information.

## Data connectors

An object class data source configured as a *data connector* has a direct connection to the database. Data connectors are useful for performing bulk data manipulation operations directly towards the database without having to read or keep the data in the data source.

As no objects are actually contained in the data source, it can’t be used to display data in the UI. However, you can use the [Create object](https://docs.appfarm.io/library/action-nodes/create-object), [Update object](https://docs.appfarm.io/library/action-nodes/update-object), and [Delete objects](https://docs.appfarm.io/library/action-nodes/delete-objects) action nodes with the data source to manipulate the data.

For example, with an `Orders` data source as a data connector, you could use the [Update object action node](https://docs.appfarm.io/library/action-nodes/update-object) to set `Order.Status` to `Active` for a filtered selection on `Orders` where `Order.Status HAS NO VALUE`. All orders in the database without a status will be updated immediately.

{% hint style="info" %}
**Good to know**

Changes to data which happen through Data Connectors (e.g. creates, updates, deletes) will *not* trigger Subscribe to Updates functionality.
{% endhint %}

## Calendar data sources

A *calendar data source* is a special type of data source for working with time periods. A typical use case for a calendar data source is when you need to iterate over a number of time periods, for example all the months of a year, or every hour of a day. You might do this to group data by time period, for example all orders placed in a given month.

{% content-ref url="calendar-data-sources" %}
[calendar-data-sources](https://docs.appfarm.io/reference/apps/data/calendar-data-sources)
{% endcontent-ref %}

## Enum data sources

An *enum data source* is a way to directly expose an [enum](https://docs.appfarm.io/reference/data-model/enumerated-types) that's made directly available to an app. This can be useful for filtering data in the UI based on multiple enum values, using the Chip group or [Multi select](https://docs.appfarm.io/library/ui-components/multi-select) components.

<details>

<summary>Example: Filter by event type</summary>

You have a view with a List component containing `Events` and you want to allow users to select one or more `Event type` values (an enum added as a property to the `Event` object class) and view only events matching the [selected](https://docs.appfarm.io/platform-concepts/objects#object-selection) types.

You can add the `Event type` enum as an enum data source and bind it to a Chip group component. Then you can attach an action to the chip group's **On Click** event handler which runs a [Set selection action node](https://docs.appfarm.io/library/action-nodes/set-selection) with **Operation Type** `Toggle selection`.&#x20;

On the list, you can add a conditional filter which is enabled if `Event type.Has selected objects EQUALS true` and a filter `Events.Event type = Event type (Context/Selected)`.

You could also add a conditional property to the chip group, setting a new color if the `Event type.Is Selected EQUALS true`.

</details>

## Usage

To add an *object class* data source to an app:

* Open the app and navigate to **Data**.
* In the **App Data panel**, click the **+** icon.
* Select one or more object classes for which you'd like to create data sources.
* Click **Add**.
* By default the data source will be [database connected](#database-connected-and-runtime-only-data-sources). You can configure it to be a [data connector](#data-connectors) or [runtime only](#runtime-only-vs.-database-connected-data-sources).

To add an *enum* data source to an app:

* Open the app and navigate to **Data**.
* In the **App Data panel**, click the down arrow icon.
* Select **Add Enum Data Source**.
* Select one or more enums for which you'd like to create data sources.
* Click **Add**.

## General properties

<table><thead><tr><th width="213">Property</th><th>Description</th></tr></thead><tbody><tr><td><strong>Name</strong></td><td>A descriptive name for the data source. Use the singular for single-cardinality data sources and plural for many-cardinality data sources. For runtime data sources, you might like to add <code>(runtime)</code> or <code>(temp)</code> to the end of the name for quick identification.</td></tr><tr><td><strong>Object Class</strong></td><td><em>Read only.</em><br>The object class the data source is based on. </td></tr><tr><td><strong>Cardinality</strong></td><td><p>Whether the database can hold one or many objects.</p><p></p><p>A data source of cardinality one is often used in conjunction with <strong>Runtime Only</strong> for creating new objects, or to store an object while it is being edited.</p><p></p><p>Cardinality many is useful when you want to access to a group of objects, for example to bind to a List or Table component, or to import rows from a CSV file.<br><br>If this property is set to <code>One</code>, it will be indicated in the data source's icon in lists of data sources.</p></td></tr><tr><td><strong>Filter</strong></td><td><p>Create a <a href="../../platform-concepts/filters">filter</a> to restrict which objects are read into the data source from the database. The data source will continuously evaluate this filter. If an object is changed and no longer meets the criteria, it will be removed from the data source.</p><p></p><p>A data source can be filtered on another data source. If you have two data sources <code>Projects</code> and <code>Tasks</code>, you can add a filter to <code>Tasks</code>  such as <code>Task.Project EXISTS IN Projects</code>. Only tasks with a reference to one of the objects contained in <code>Projects</code> will be populated.<br><br>Most data sources should have a filter, for both security and performance reasons. A data source should only contain the objects a user should be allowed to see given their role. Additionally, too many objects will degrade app performance.</p></td></tr><tr><td><strong>Read All Objects</strong></td><td>Populate the data source with all objects in this <strong>Object Class</strong>. Selecting this option will result in a warning, see <strong>Filter</strong> above.</td></tr><tr><td><strong>Client Filters</strong></td><td>Add <a href="#client-filters">client filters</a>.</td></tr><tr><td><strong>Sorting</strong></td><td>Add <a href="#undefined">sorting</a>.</td></tr><tr><td><strong>Initially Skip Object Count</strong></td><td>The number of objects to skip when objects are first read into the data source. For example, if <strong>Skip</strong> is set to 2, the first 2 objects in the database that would normally qualify for the data source are ignored.<br><br>This number can be altered at runtime using the <a href="../../../library/action-nodes/set-data-source-attributes">Set data source attributes action node</a>. </td></tr><tr><td><strong>Initially Limit Object Count</strong></td><td>The maximum number of objects to read into the data source on first read.<br><br>This number can be altered at runtime using the <a href="../../../library/action-nodes/set-data-source-attributes">Set data source attributes action node</a>. </td></tr><tr><td><strong>Data Connector</strong></td><td><p>When selected, no data will be read into the data source. The data source will instead operate as a direct connection to the database.</p><p></p><p>This allows you to do bulk <a href="https://en.wikipedia.org/wiki/Create,_read,_update_and_delete">CRUD operations</a> directly towards the database without having to read or keep the data in the data source.</p></td></tr><tr><td><strong>Runtime Only</strong></td><td><p>When selected, no data in this data source will be stored in the database unless a <a href="../../../library/action-nodes/persist-objects">Persist objects action node</a> is run.</p><p></p><p>Deleting an object from a runtime data source will only <em>remove</em> the object from the data source. It will not be deleted from the database.</p></td></tr><tr><td><strong>Auto Create</strong></td><td><em>Available for single-cardinality runtime-only data sources.</em><br>When selected, a new object will be created in the data source on app load and when the data source is emptied by removing an object.</td></tr><tr><td><strong>Initially Subscribe to Updates</strong></td><td>The data source will update when a change is made by another user. This means a refresh is not required to see changes made by others to the objects you are viewing. this should only be used when necessary, because it may have a performance impact.<br><br>If this property is selected, it will be indicated in the data source's icon in lists of data sources. This property can be altered later using the <a href="../../../library/action-nodes/set-data-source-attributes">Set data source attributes action node</a>. <br><br><strong>Important notes:</strong> <br>- We do not recommend using Subscribe to Updates as the only concurrency or data-refresh mechanism for applications with critical needs for instant live sync between clients. For example, if the main feature of your app is that data is instantly live in all clients, such as in a booking system or a multi-user quiz app, you cannot only rely on Subscribe to updates, since the feature does <strong>not have a 100% delivery guarantee</strong>. <br>- When objects are updated through <a href="../../data-model/graphql/mutations"><strong>GraphQL mutations</strong></a>, the changes are <em>not</em> pushed to Data Sources with Initially Subscribe to Updates.<br>- When objects are updated through a <strong>Data Connector</strong> Data Source (see info about Data Connector a few rows above), the changes are <em>not</em> pushed to Data Sources with Initially Subscribe to Updates.<br>- If <a href="../../../security/permissions/conditional-permissions#read-permissions-on-the-person-object-class"><strong>Conditional Permissions</strong></a> (with conditional read-permissions) have been set up for an Object Class, Initially Subscribe to Update will not work for Data Sources of that Object Class.</td></tr><tr><td><strong>Initially Disabled</strong></td><td><p>The data source will be disabled when the app is loaded and as a consequence will be empty.</p><p></p><p>This can be used for performance optimization by lazy loading data. For example, if you have a data source <code>Company Log</code> and you only need this data when the user clicks a <code>View History</code> button, you can have the data source initially disabled and enable it if the user clicks the button.<br><br>This property can be altered at runtime using the <a href="../../../library/action-nodes/set-data-source-attributes">Set data source attributes action node</a>. </p></td></tr><tr><td><strong>Reference Data Sources</strong></td><td>Add <a href="#undefined">reference data sources</a>.</td></tr><tr><td><strong>Description</strong></td><td>A longer description of the data source. For your own reference.</td></tr></tbody></table>

### **Client filters**

Add one or more filters to a data source that can be enabled or disabled at runtime. This is useful if you want to provide a user with the ability to filter data from the UI. Client filters are applied in addition to one specified in the **Filter** property.

For example, say you have a data source `Projects`, where each project has a status of either `New`, `Ongoing`, or `Complete`. You can display the projects in a list and add UI components to enable the user to dynamically filter the data source (and thereby the list) to contain only the projects with a specific status.

One advantage to using client filters on a data source over conditional filters on a UI component is that you can easily access the **Object Count** If this property is selected, it will be indicated in the data source's icon in lists of data sources.

<table><thead><tr><th width="208">Property</th><th>Description</th></tr></thead><tbody><tr><td><strong>Name</strong></td><td>A  reference for the filter.</td></tr><tr><td><strong>Enabled</strong></td><td>Set the filter to be enabled according to a data binding, condition, or function.</td></tr><tr><td><strong>Filter</strong></td><td>The <a href="#filter">filter</a> that should apply if <strong>Enabled</strong> equates to true.</td></tr></tbody></table>

{% embed url="<https://www.loom.com/share/a44c286231f646909114f53168bfccf0>" %}

### Remarks regarding Read All Objects & Client Filters

Using Read All Objects or Client Filters may not align with security best practices. Client Filters are applied *after* the data has been transmitted from the server. This means that some browser developer tools can inspect the unfiltered data as it is transmitted from the server to the client. Likewise, datasources with Read All Object will also be available for inspection in some browser developer tools. This is important to keep in mind when filtering data on the client, either in form of Client Filters or UI filters.&#x20;

The most secure approach is to use standard [Filters](https://docs.appfarm.io/reference/platform-concepts/filters) on a data source or [Conditional Permissions](https://docs.appfarm.io/reference/security/permissions/conditional-permissions). These filters are evaluated on the [server rather than the client,](https://docs.appfarm.io/platform-concepts/filters#server-side-vs.-client-side-filters) and prevent unauthorized data from being transmitted.

### Sorting

Apply one or more sorting rules to a data source that will be continuously applied. If multiple rules are added, they will be applied from the top down.

{% hint style="info" %}
**Good to know**

Sorting applied directly on a data source can not be used on conjunction with the [Sort objects action node](https://docs.appfarm.io/library/action-nodes/sort-objects).
{% endhint %}

<table><thead><tr><th width="222">Property</th><th>Description</th></tr></thead><tbody><tr><td><strong>Sort Field</strong></td><td>An <a href="../../../data-model/object-classes#object-class-properties">object class property</a> to sort on.</td></tr><tr><td><strong>Sort Order</strong></td><td>Whether the sort should be ascending or descending. Ascending will sort numbers from smallest to largest and strings from A–Z. Descending will sort in the opposite direction.</td></tr></tbody></table>

### Reference data sources

Specify which data source contains the data for a [reference property](https://docs.appfarm.io/data-model/object-classes#data-types) in the object class.

Reference data sources allow you to use deep-data bindings for non-persisted references and runtime function references. They are helpful for creating REST-heavy applications and are also an important element for[ performance optimization](https://docs.appfarm.io/how-to/security-testing-and-deployment/optimize-your-app) in larger apps.

If you have an object class property which references another object class, and your app accesses a property in the referenced object class, this is known as a *deep-data binding*. If you add a reference to a runtime-only data source, this deep-data binding will not be available unless the object is persisted.

If you are interacting with a persisted object, a *generated data source* is created in the background, joining the two object classes. This can result in large amounts of extra data being loaded into an app. In the Developer Tools, you may turn on display of these data sources by enabling [Include Generated Data Sources](https://docs.appfarm.io/appfarm-client/developer-tools-for-apps#client-preview-mode).

By adding a reference data source you explicitly specify a data source that contains the data for the referenced object class. This solves the issues above by removing the need for a generated data source and enabling deep-data bindings on non-persisted references.

<details>

<summary>Example: Customers and Contacts</summary>

You two data sources, `Contacts` and `Customers`. `Contacts` has an object class property `Customer`, which is a reference to the *Customer* object class. In a Table component listing all contacts, you want to display the customer name. If you add `Contacts.Customer.Name` as a column in the table, this would create a generated data source joining the contact and customer data.

Since you already have the `Customers` data source, you can add a reference data source with **Reference** `Customer` and **Data Source** `Customers`. With the reference data source enabled, the customer data is now read from the `Customers` data source. You can add any property from the Customer reference, such as `Contacts.Customer.Country` without any performance impact.

</details>

<table><thead><tr><th width="244">Property</th><th>Description</th></tr></thead><tbody><tr><td><strong>Reference</strong></td><td>The referenced object class.</td></tr><tr><td><strong>Data Source</strong></td><td>The data source that contains the data for the referenced object class.</td></tr></tbody></table>

## Runtime properties

**Runtime properties** are data-source specific custom properties available for each object in the data source. The value of a runtime property will exist only in the user's browser and is not saved to the database or shared with other users. A typical use case is to calculate a value based on other properties.

<details>

<summary>Example: Function to calculate a total</summary>

You have a data source based on the object class `Order line` that includes the object class properties `Quantity` and `Price`. You want to automatically calculate the total in your app.

Create a runtime property `Total`, with **Data Type** `Float` and **Property Type** `Function`. Create a function that multiplies the quantity property by the price quality and returns the total.

You can then reference the `Total` property in your UI and it will dynamically update when `Quantity` and `Price` are changed.&#x20;

</details>

<table><thead><tr><th width="211">Property</th><th>Description</th></tr></thead><tbody><tr><td><strong>Name</strong></td><td>The name used throughout Appfarm Create to refer to this property. This name can be changed at any time without technical consequences.</td></tr><tr><td><strong>Node Name</strong></td><td>The key that is used to store the property in memory.</td></tr><tr><td><strong>Description</strong></td><td>A longer description of the property. For your own reference.</td></tr><tr><td><strong>Data Type</strong></td><td>The type of data allowed to be stored in this property. See <a href="../../../data-model/object-class-properties#data-types">data types</a>.</td></tr><tr><td><strong>Cardinality</strong></td><td>If the Data Type is set to a reference to an Object Class or an Enumerated Type, you have the option to define <em>Cardinality</em>. The default is <strong>One</strong>, but you may also select <strong>Many</strong> (storing an array of references instead of a single reference). Read more on the Cardinality setting in the Object Class Properties section <a href="../../data-model/object-class-properties">here</a>.</td></tr><tr><td><strong>Property Type</strong></td><td><p>An runtime property can be either a value or a function.</p><ul><li><code>Value</code>: A primitive value that can be read and updated.</li><li><code>Function</code>: A <a href="../../platform-concepts/functions">function</a> that calculates a value at runtime. For example, a function that multiplies the values of two other properties and returns a total. If the properties change, the function will re-run.</li></ul></td></tr><tr><td><strong>Value on Create</strong></td><td><em>Available for Value property type.</em><br>A default value to set for the property when the app is loaded.</td></tr><tr><td><strong>Function</strong></td><td><em>Available for Function property type.</em><br>A <a href="../../platform-concepts/functions">function</a> that calculates and returns a value at runtime.</td></tr></tbody></table>

## Object class properties

**Object class properties** are the properties you have defined for the [object class](https://docs.appfarm.io/reference/data-model/object-classes) in the [Global data model](https://docs.appfarm.io/reference/data-model), as well as [built-in properties](https://docs.appfarm.io/data-model/object-classes#built-in-properties).

## Data source object properties

**Data source object properties** are built-in properties available for each [object](https://docs.appfarm.io/reference/platform-concepts/objects) in the data source.

<table><thead><tr><th width="233">Property</th><th width="118">Data type</th><th>Description</th></tr></thead><tbody><tr><td><strong>Index</strong></td><td>Integer</td><td>The index (order) of an object in the data source. Objects in data sources are <a href="https://en.wikipedia.org/wiki/Zero-based_numbering">zero-indexed</a>. The first object is at index <code>0</code>, the second is at index <code>1</code> and so on. The last object will have an index equivalent to <strong>Object Count</strong> minus one.<br><br><strong>Important</strong>: If you wish to implement user-sorting, you should define a separate integer property in the object class and use that to store the sort order.</td></tr><tr><td><strong>Is Even In Data Source</strong></td><td>Boolean</td><td>The <strong>Index</strong> of the object is an even number.</td></tr><tr><td><strong>Is First In Data Source</strong></td><td>Boolean</td><td>The object has an <strong>Index</strong> of <code>0</code>.</td></tr><tr><td><strong>Is Last In Data Source</strong></td><td>Boolean</td><td>The object has the highest index of all objects.</td></tr><tr><td><strong>Is Not Selected</strong></td><td>Boolean</td><td>The object is not <a href="../../../platform-concepts/objects#object-selection">selected</a>.</td></tr><tr><td><strong>Is Selected</strong></td><td>Boolean</td><td>The object is <a href="../../../platform-concepts/objects#object-selection">selected</a>.</td></tr><tr><td><strong>Object State</strong></td><td>Enum</td><td><p><em>Available for runtime-only data sources.</em><br>The persist state of the object. An object will return one of the following values:</p><ul><li><code>New</code>: The object has never been persisted to the database.</li><li><code>Updated</code>: The object exists in the database, but has changes that have not been persisted.</li><li><code>Synchronized</code>: Any changes have been persisted and the object is in sync with the database.</li></ul></td></tr></tbody></table>

## Data source attributes

Data source attributes describe the state of the data source, for example if the data source is empty or how many [objects](https://docs.appfarm.io/reference/platform-concepts/objects) are in the data source.

<details>

<summary>Example: Skip objects</summary>

You have created a custom list with all objects in a `Customers` data source using iterating containers. You'd like to add pagination, displaying 10 objects at a time.

Set **Initially Limit Object Count** to `10` and **Initially Skip Object Count** to `0`. Add a `Next page` button that triggers an action with the Set data source attributes action node and increase **Skip** by `10`.

</details>

<details>

<summary>Example: Limit objects</summary>

You have created a custom list of objects in an `Events` data source using iterating containers. You would like to implement dynamic loading of data, known as *infinity scrolling*.

Set **Initially Limit Object Count** to `20`. Add a `Load more` button at the bottom of the custom list that triggers an action with the Set data source attributes action node and increase **Limit** by `20`.

Alternatively, you could use the **On Viewport Enter** event handler on a container to trigger the action. An example of this is available in the [Showroom](https://showroom.appfarm.app/use-cases/infinity-scroll).

</details>

<table><thead><tr><th width="239">Property</th><th width="116">Data type</th><th>Description</th></tr></thead><tbody><tr><td><strong>Data Ready</strong></td><td>Boolean</td><td>The data source has finished processing data.<br><br>This property is not often used as most data operations are synchronous and an action node won't run until the previous action node's data operations are complete.<br><br><strong>Data Ready</strong> can be useful when you run the <a href="../../../library/action-nodes/set-selection">Set selection action node</a> with <strong>Run Asynchronous</strong> selected and the selection leads to a change in dependent data sources.</td></tr><tr><td><strong>Disabled</strong></td><td>Boolean</td><td>The data source is disabled and as a consequence is empty.<br><br>This property can be set by selecting the <strong>Initially Disabled</strong> property, or using the <a href="../../../library/action-nodes/set-data-source-attributes">Set data source attributes action node</a>.</td></tr><tr><td><strong>Has No Selected Objects</strong></td><td>Boolean</td><td>The data source contains no <a href="../../../platform-concepts/objects#object-selection">selected objects</a>.</td></tr><tr><td><strong>Has Selected Objects</strong></td><td>Boolean</td><td>The data source contains at least one <a href="../../../platform-concepts/objects#object-selection">selected object</a>.</td></tr><tr><td><strong>Is Empty</strong></td><td>Boolean</td><td>The data source contains no objects.</td></tr><tr><td><strong>Is Not Empty</strong></td><td>Boolean</td><td>The data source contains at least one object.</td></tr><tr><td><strong>Limit</strong></td><td>Integer</td><td>The maximum number of objects that can be in the data source.<br><br>This property can set by entering a value for the <strong>Initially Limit Object Count</strong> property, or using the <a href="../../../library/action-nodes/set-data-source-attributes">Set data source attributes action node</a>.</td></tr><tr><td><strong>Object Count</strong></td><td>Integer</td><td>The number of objects in the data source.</td></tr><tr><td><strong>Selected Objects Count</strong></td><td>Integer</td><td>The number of <a href="../../../platform-concepts/objects#object-selection">selected objects</a> in the data source.</td></tr><tr><td><strong>Skip</strong></td><td>Integer</td><td>The number of objects to skip when reading objects into the data source. For example, if <strong>Skip</strong> is set to 2, the first 2 objects in the database that would normally qualify for the data source are ignored.<br><br>This property can set by entering a value for the <strong>Initially Skip Object Count</strong> property, or using the <a href="../../../library/action-nodes/set-data-source-attributes">Set data source attributes action node</a>.</td></tr><tr><td><strong>Subscribe To Updates</strong></td><td>Boolean</td><td>The data source will update when a change is made by another user.<br><br>This property can be set by selecting the <strong>Initially Subscribe To Updates</strong> property, or using the <a href="../../../library/action-nodes/set-data-source-attributes">Set data source attributes action node</a>.</td></tr><tr><td><strong>Total Objects Count</strong></td><td>Integer</td><td>The total number of objects that qualify for the data source. This number may differ from <strong>Object Count</strong> because it includes objects excluded from the data source due to <strong>Client Filters</strong>, <strong>Limit</strong>, and <strong>Skip</strong>.</td></tr></tbody></table>
