create_product_validation

Contents

create_product_validation#

Create product validation.

Warning

Product Validation collection is deprecated in favor of ProductListing.product_validation field. Mutation will be removed after data migration.

Arguments#

input | Product Validation

Returns#

response_type | single

response_object | Product Validation

Mutation example

mutation {
  create_product_validation(input: {}) {
    error {
      detail
      status
    }

    data {
      _id
    }
  }
}