How to set the price for the default variant when creating new product

I want to set the price of the default variant to a value when creating the product

so my query is like this

mutation MyMutation {
    productCreate(
        input: {tags: "apparel", descriptionHtml: "new product SSS", images: {src: ""}, 
        metafields: {description: "product sss"}, title: "T and C product", status: 
        ACTIVE,}
    )
}

so when creating this product a default variant is created automatically

and the prices are variant level

so How can I set the price at the same time of creating the product ?

1 Like