import type { Category } from '../types/site' import { ShopifyConfig } from '../api' import { CollectionEdge } from '../schema' import { normalizeCategory } from './normalize' import getSiteCollectionsQuery from './queries/get-all-collections-query' const getCategories = async ({ fetch, locale, }: ShopifyConfig): Promise => { const { data } = await fetch( getSiteCollectionsQuery, { variables: { first: 250, }, }, { ...(locale && { headers: { 'Accept-Language': locale, }, }), } ) return ( data.collections?.edges?.map(({ node }: CollectionEdge) => normalizeCategory(node) ) ?? [] ) } export default getCategories