import gql from 'graphql-tag';

export const SALES_LOCATIONS = gql`
  query SalesLocations {
    salesLocations {
      id
      name
      description
      salesChannel
    }
  }
`;
