lodash compact 배열의 falsy한 값[ false, null, 0, "", undefined, NaN ]을 제거한다] lodash 의 compact 에 대한 예시로 GraphQL 예외처리로 알아보겠다. 2022.05.08 - [TIL] - graphQL 예외처리 위와 같이 타입이 정의되어 있다고 하자. export const brandDataList = (data: GifticonsBrandListQuery | undefined) => { if (!data) return defaultBrands; const { gifticonsBrandList } = data; if (!gifticonsBrandList) return defaultBrands; const { brandList } = gift..