Hello, is it possible not to call `SELECT` query o...
# random
j
Hello, is it possible not to call
SELECT
query on
prisma.create()
?
plus one +1 1
h
prisma.create()
will return a record you've created which might help what you want to achive
j
yes i know. But in some cases i dont need that returned record, so the
SELECT
is wasted.
Would be nice something like:
Copy code
await prisma.create({
    data: {
        ...
    },
    select: false
});
Maybe there is reason to always return created record 🤔
plus one +1 1
h
Oh I think I've miss understood your question. That looks like a great question 🤔
j
nah this might be worth an issue and feature request - probably no on cared about this before
j
j
Thanks. If you ahve the time, add an example output of the queries that are done on a simple one of these. That would help with context.