Files
twenty/packages/twenty-server/src/engine/subscriptions/dtos/remove-query-subscription.input.ts
T
Thomas Trompette 3acc87a620 [SSE] Add backend for SSE subscriptions (#17022)
- moved a few gql types to twenty shared to re-use in server
- added a new endpoint, onEventSubscription that expect a streamId to
create a connection
- two new endpoints to store queries in Redis
- updated the existing batch channel to directly use object record type
2026-01-10 14:44:02 +00:00

11 lines
182 B
TypeScript

import { Field, InputType } from '@nestjs/graphql';
@InputType()
export class RemoveQueryFromEventStreamInput {
@Field()
eventStreamId: string;
@Field()
queryId: string;
}