diff --git a/packages/api/src/schema.ts b/packages/api/src/schema.ts index 2e4ecd4f3..cd4b5f399 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 {