File size: 182 Bytes
d9494a5
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { Field, InputType } from '@nestjs/graphql';

@InputType()
export class RemoveQueryFromEventStreamInput {
  @Field()
  eventStreamId: string;

  @Field()
  queryId: string;
}