Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / features / ShippingMethods / state / queries / GetShippingMethodsList.graphql.js
Size: Mime:
import { gql } from 'apollo-boost';
/**
 * @see /src/graphql-modules/cartAndCheckout/orchestration/resolver
 * @todo what is `shippingMethodItemId` for again?
 */
export default gql `
  query GetShippingMethodsList($cartItemId: Int) {
    shippingMethodList(cartItemId: $cartItemId) {
      responseMessage
      list {
        identifier
        label
        isSelected
        priceValue
        deliveryTime
        deliveryTimePretty
      }
    }
  }
`;
//# sourceMappingURL=GetShippingMethodsList.graphql.js.map