You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The character limit for project name in the delete project mutation is 50 chars, but the table has a limit of 100 chars. As a result, projects with names longer than 50 chars are being created, but unable to be deleted.
To Reproduce
Steps to reproduce the behavior:
Create a project with a name with more than 50 chars
Attempt to delete the project using graphql delete project mutation
Expected behavior
The project should be deleted.
Additional context
Here is the graphql error message:
{ "errors": [ { "message": "Data too long for column 'name' at row 1", "locations": [ { "line": 305, "column": 3 } ], "path": [ "deleteProject" ] } ], "data": { "deleteProject": null } }
The text was updated successfully, but these errors were encountered:
Describe the bug
The character limit for project name in the delete project mutation is 50 chars, but the table has a limit of 100 chars. As a result, projects with names longer than 50 chars are being created, but unable to be deleted.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The project should be deleted.
Additional context
Here is the graphql error message:
{ "errors": [ { "message": "Data too long for column 'name' at row 1", "locations": [ { "line": 305, "column": 3 } ], "path": [ "deleteProject" ] } ], "data": { "deleteProject": null } }
The text was updated successfully, but these errors were encountered: