import gql from 'graphql-tag';

import { errorFragment } from '../fragments/error';

export const WHITELIST = gql`
  mutation whitelist($input: WhitelistInput!) {
    whitelist(input: $input) {
      whiteListResult
    }
  }
  ${errorFragment}
`;
