> 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/001_user/012_documents/014__create_user_folder.md).

# Create User Folder

GraphQL endpoint: `/user`

Creates a document folder for the calling user. Pass parentId to nest it under an existing folder; omit it for a folder at the repository root.

## Query

```graphql
mutation { createUserFolder(name: "Contracts") { id name parentId } }

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "createUserFolder": {
      "id": "00000000-0000-4000-8000-000000000001",
      "name": "Contracts",
      "parentId": null
    }
  }
}
```
