getCheckoutInfoAboutShipping top-level constant

String const getCheckoutInfoAboutShipping

Query to get checkout info about shipping

Implementation

const String getCheckoutInfoAboutShipping = r'''
query getCheckoutInfoAboutShipping($id : ID!) {
  node(id: $id) {
    ... on Checkout {
      requiresShipping
    }
  }
}
''';