Add new Arg for ContributionMessage

This commit is contained in:
elweyn 2022-08-22 10:30:14 +02:00
parent 8f117f23b4
commit a59967d767

View File

@ -0,0 +1,11 @@
import { ArgsType, Field, InputType } from 'type-graphql'
@InputType()
@ArgsType()
export default class ContributionArgs {
@Field(() => Number)
contributionId: number
@Field(() => String)
message: string
}