
import { gql } from "@apollo/client";
import { refillFragment } from '../fragments/refill';

export const REFILL_CATEGORIES = gql`
query refillCategories($input: MsisdnInput!) {
  availableRefills (input: $input) {
    name
    description
    refillType
    refills {
      ...RefillFragment
    }
  }
}
${refillFragment}
`;