backend/lib/seed/engine/utils/streams/schemas/stream.schema.input.ts
2025-05-14 21:45:16 +02:00

12 lines
276 B
TypeScript

import { GetManyArgs } from '@seed/graphql/Request';
import { Field, ArgsType } from 'type-graphql';
@ArgsType()
export class StreamArgs extends GetManyArgs {
@Field({ nullable: true })
documentKey?: string;
@Field({ nullable: true })
hookStatus?: string;
}