Answer the question
In order to leave comments, you need to log in
How to upload data received via API to the database?
Hi everybody.
The question is, there is a Node.js backend (GraphQL Prisma), the internal database works, the API too. When making a POST request from the site, you need to upload data to your database + to a corporate application via API. I'm looking for examples of the implementation of this, or an example in the code. I do not understand at all where to dig. I'm new to JS :)
I would be grateful for an example on a standard mutation:
const { getUserId } = require('../../utils')
const post = {
async createDraft(parent, { title, text }, ctx, info) {
const userId = getUserId(ctx)
return ctx.db.mutation.createPost(
{
data: {
title,
text,
isPublished: false,
author: {
connect: { id: userId },
},
},
},
info
)
},
async publish(parent, { id }, ctx, info) {
const userId = getUserId(ctx)
const postExists = await ctx.db.exists.Post({
id,
author: { id: userId },
})
if (!postExists) {
throw new Error(`Post not found or you're not the author`)
}
return ctx.db.mutation.updatePost(
{
where: { id },
data: { isPublished: true },
},
info,
)
},
async deletePost(parent, { id }, ctx, info) {
const userId = getUserId(ctx)
const postExists = await ctx.db.exists.Post({
id,
author: { id: userId },
})
if (!postExists) {
throw new Error(`Post not found or you're not the author`)
}
return ctx.db.mutation.deletePost({ where: { id } })
},
}
module.exports = { post }
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question