create_product_listing#

Create product listing.

Arguments#

input | Product Listing

Returns#

response_type | single

response_object | Product Listing

Mutation example:

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

    data {
      _id
    }
  }
}