Product Digital Items by Customer

productDigitalItemsByCustomer #

productDigitalItemsByCustomer(orderHash: String, productId: String) [DigitalItem]

Example #

query productDigitalItemsByCustomer($orderHash: String!, $productId: String!){
  productDigitalItemsByCustomer(orderHash: $orderHash, productId: $productId) {
    id
    title
    description
    position
    contents {
      id
      title
      contentType
      isTrialAllowed
      contentText
      contentUrl
      updatedAt
      position
    }
  }
}

Try It Now