Product Add Digital Item

productAddDigitalItem #

productAddDigitalItem(productId: String, params: AddDigitalItemParams) DigitalItem

Example #

mutation productAddDigitalItem($productId: String!, $params: AddDigitalItemParams!){
  productAddDigitalItem(productId: $productId, params: $params) {
    id
    title
    description
    position
    contents {
      id
      title
      contentType
      isTrialAllowed
      contentText
      contentUrl
      updatedAt
      position
    }
  }
}

Try It Now