@robertbrunhage
Ex Volvo Software Engineer that writes and makes videos about Flutter and Dart but maybe other tech in the future!
Nothing here yet.
Ex Volvo Software Engineer, GDE in Flutter & Dart with over 27k subscribers on YouTube!
How would you go about publishing it as a draft? I am using the following query but it always publishes live instead of as a draft. mutation createPublicationStory($input: CreateStoryInput!, $publicationId: String!, $hideFromHashnodeFeed: Boolean = true){ createPublicationStory(input: $input, publicationId: $publicationId, hideFromHashnodeFeed: $hideFromHashnodeFeed){ post { slug, publication { domain } } } } This is the data I provide: input: { title: req.body.title, contentMarkdown: req.body.content, isRepublished: { originalArticleURL: req.body.canonicalUrl, }, tags: [], }, publicationId: '239423498723sdkfghsdkfj93', hideFromHashnodeFeed: true, // DOESN'T WORK }