Stop strapi from automatically publishing?

I just found a way!

Just pass the field “published_at” as NULL and it will be automatically saved as a draft :smiley:

@BlindPenguin

await this.$strapi.create("comments", {
    article: this.article,
    author: this.author,
    description: this.description,
    email: this.email,
    **published_at: null,**
  });