> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/002_company/013_forms/001__list_company_forms.md).

# List Company Forms

GraphQL endpoint: `/company`

Lists the current company's forms with their versions, cursor-paginated. Pass `paginationInfo.nextCursor` back as `cursor` to fetch the next page.

## Query

```graphql
query ($limit: Int, $cursor: String) {
  companyForms(limit: $limit, cursor: $cursor) {
    paginationInfo {
      limit
      nextCursor
    }
    records {
      id
      title
      description
      formVersions {
        id
        version
        published
      }
      insertedAt
      updatedAt
    }
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "companyForms": {
      "paginationInfo": {
        "limit": 20,
        "nextCursor": null
      },
      "records": [
        {
          "description": "A test form",
          "formVersions": [
            {
              "id": "00000000-0000-4000-8000-000000000001",
              "published": true,
              "version": 2
            },
            {
              "id": "00000000-0000-4000-8000-000000000002",
              "published": false,
              "version": 1
            }
          ],
          "id": "00000000-0000-4000-8000-000000000003",
          "insertedAt": "2026-01-15T09:00:00",
          "title": "Test Form 1",
          "updatedAt": "2026-01-15T09:00:00"
        }
      ]
    }
  }
}
```
