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)

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


Last updated

Was this helpful?