> For the complete documentation index, see [llms.txt](https://docs.graphlit.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.graphlit.dev/api-guides/use-cases/feeds/feed-update.md).

# Update Feed Configuration

## User Intent

"How do I update feed settings? Show me feed updates."

## Operation

**SDK Method**: `updateFeed()`\
**Use Case**: Modify feed configuration

***

## Code Example (TypeScript)

```typescript
import { Graphlit } from 'graphlit-client';

const graphlit = new Graphlit();

await graphlit.updateFeed({
  id: 'feed-id',
  name: 'Updated Feed Name',
  schedulePolicy: {
    repeatInterval: 'PT30M',
  },
});

console.log('Feed updated');
```

***

## Updatable Fields

**name**: Feed display name\
**schedulePolicy**: Sync frequency\
**readLimit**: Items per sync\
**workflow**: Change processing workflow

***
