OBJECT

UpdateProjectInvalidInputError

link GraphQL Schema definition

1type UpdateProjectInvalidInputError {
2
3descriptionError: String
4
5# A general error not related to input fields.
6errorMessage: String
7
8# A list of errors happened in the specific modules.
9modulesErrors: [ProjectModuleInvalidInputError!]!
10
11# A list of errors happened in the specific tags.
12tagsErrors: [ProjectTagInvalidInputError!]!
13
14titleError: String
15
16}