import type { GetCustomerIdQuery } from '../../schema' import type { BigcommerceConfig } from '../' export const getCustomerIdQuery = /* GraphQL */ ` query getCustomerId { customer { entityId } } ` async function getCustomerId({ customerToken, config, }: { customerToken: string config: BigcommerceConfig }): Promise { const { data } = await config.fetch( getCustomerIdQuery, undefined, { headers: { cookie: `${config.customerCookie}=${customerToken}`, }, } ) return String(data?.customer?.entityId) } export default getCustomerId