Features

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.

ArgumentDescription
limit IntThe number of features to return. The default is 25.
page IntThe page number to return. Starts at 1.

Fields

You can use the following field(s) to specify what information your features query will return.

FieldDescription
app_id IDThe unique identifier of the app the feature belongs to.
created_at DateThe app feature's creation date.
data JSONThe app feature's data.
id ID!The app feature's unique identifier.
name StringThe app's feature's name.
type StringThe app feature's type.
updated_at DateThe app feature's last updated date.