diff --git a/packages/api/src/schema.ts b/packages/api/src/schema.ts index c31bf5838..109624af6 100755 --- a/packages/api/src/schema.ts +++ b/packages/api/src/schema.ts @@ -1272,9 +1272,9 @@ const schema = gql` union LabelsResult = LabelsSuccess | LabelsError input CreateLabelInput { - name: String! + name: String! @sanitize(maxLength: 64) color: String! - description: String + description: String @sanitize(maxLength: 100) } type CreateLabelSuccess {