All apps built on the monday.com apps framework are comprised of features. These features determine where the app appears in the UI, the methods required to build it, and its functionality. They are created and managed through the Developer Center, but you can also retrieve certain data by querying the features
object.
Queries
To retrieve app data, you can query the features
endpoint as follows:
- Must be nested within an
app
query - Returns an object containing metadata about an app's features
query {
app (id:123456) {
features (limit: 2) {
created_at
data
id
name
}
}
}
Arguments
You can use the following argument(s) to reduce the number of results returned in your features
query.
Argument | Description |
---|---|
limit Int | The number of features to return. The default is 25. |
page Int | The page number to return. Starts at 1. |
Fields
You can use the following field(s) to specify what information your features
query will return.
Field | Description |
---|---|
app_id ID | The unique identifier of the app the feature belongs to. |
created_at Date | The app feature's creation date. |
data JSON | The app feature's data. |
id ID! | The app feature's unique identifier. |
name String | The app's feature's name. |
type String | The app feature's type. |
updated_at Date | The app feature's last updated date. |