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