twenty / packages /twenty-server /src /engine /subscriptions /dtos /remove-query-subscription.input.ts
Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
182 Bytes
import { Field, InputType } from '@nestjs/graphql';
@InputType()
export class RemoveQueryFromEventStreamInput {
@Field()
eventStreamId: string;
@Field()
queryId: string;
}