import gql from 'graphql-tag';

export const CONTRACT_AVAILABLE_OFFERS = gql`
  query ContractAvailableOffers($input: ContractInput!) {
    contractAvailableOffers(input: $input) {
      amount
      id
      description
      isAvailable
      length
      name
      reasons {
        id
        title
      }
      unit
    }
  }
`;
