import gql from 'graphql-tag';

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

export const RELOCATION = gql`
  mutation relocation($input: RelocationInput) {
    relocation(input: $input) {
      error {
        ...ErrorFragment
      }
    }
  }${errorFragment}
`;
