swagger에서 api를 정의할 때 Uncaught TypeError: Cannot read property 'withMutations' of null  에러가 발생했다.


이 이유는 api 정의할 때 parameters의 값이 null이기 때문에 발생하는 것이다.




parameters: null,


또는


parameters: ,





=>



parameters:[]


로 하면 동작한다.



Posted by '김용환'
,