* Hide workspace and refresh token from schema * Add pipe models and migrations * Add seeds * Update FE graphql schema
9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
|
|
@InputType()
|
|
export class PipelineAssociationWhereUniqueInput {
|
|
@Field(() => String, { nullable: true })
|
|
id?: string;
|
|
}
|