> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Initiatives

Retrieve a list of initiatives.

<Note>
  External Documentation

  To learn more, visit the [Linear documentation](https://linear.app/developers/graphql).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                                                                                         |
  | --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | After           | The cursor for pagination. Can be obtained from the `endCursor` field in the previous response.<br />        <br />**Note:** To use this pagination parameter, `first` is required. |
  | First           | The maximum number of initiatives to return.                                                                                                                                        |
  | Initiative Name | The name or partial name to filter initiatives by.                                                                                                                                  |
</div>

## Example Output

```json theme={"dark"}
{
  "data": {
    "initiatives": {
      "edges": [
        {
          "cursor": "cursor",
          "node": {
            "archivedAt": null,
            "color": "#bec2c8",
            "completedAt": "2025-12-17T11:02:52.752Z",
            "content": null,
            "createdAt": "2025-12-17T11:02:44.843Z",
            "description": null,
            "frequencyResolution": "weekly",
            "health": "onTrack",
            "healthUpdatedAt": "2025-12-25T07:52:36.407Z",
            "icon": null,
            "id": "9353cf98-1606-4be4-a3ff-e2bcbdded046",
            "name": "example",
            "slugId": "8c1002b5fa2f",
            "sortOrder": -1085.31,
            "startedAt": "2025-12-17T11:02:44.848Z",
            "status": "Completed",
            "targetDate": null,
            "targetDateResolution": null,
            "trashed": null,
            "updateReminderFrequency": null,
            "updateReminderFrequencyInWeeks": null,
            "updateRemindersDay": null,
            "updateRemindersHour": null,
            "updatedAt": "2025-12-17T11:02:52.752Z",
            "url": "https://linear.app/example/initiative/example-8c1002b5fa2f"
          }
        }
      ]
    }
    "pageInfo": {
      "endCursor": "cursor",
      "hasNextPage": false,
      "hasPreviousPage": false,
      "startCursor": "cursor"
    }
  }
}
```

## Workflow Library Example

[List Initiatives with Linear and Send Results Via Email](https://library.blinkops.com/workflows/list-initiatives-with-linear-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-initiatives-with-linear-and-send-results-via-email/canvas" />
</div>
