12 lines
276 B
TypeScript
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;
|
|
}
|