Skip to content

Commit bf03f2d

Browse files
committed
(chore) - add sorting
1 parent 0755dfe commit bf03f2d

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

server/src/generated/prisma-client/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ var models = [
2020
exports.Prisma = prisma_lib_1.makePrismaClientClass({
2121
typeDefs,
2222
models,
23-
endpoint: ``
23+
endpoint: ``,
24+
secret: `mysecret123`
2425
});
2526
exports.prisma = new exports.Prisma();

server/src/generated/prisma-client/prisma-schema.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ enum LinkOrderByInput {
8282
description_DESC
8383
url_ASC
8484
url_DESC
85+
updatedAt_ASC
86+
updatedAt_DESC
8587
}
8688
8789
type LinkPreviousValues {
@@ -420,6 +422,10 @@ enum UserOrderByInput {
420422
email_DESC
421423
password_ASC
422424
password_DESC
425+
createdAt_ASC
426+
createdAt_DESC
427+
updatedAt_ASC
428+
updatedAt_DESC
423429
}
424430
425431
type UserPreviousValues {
@@ -620,6 +626,10 @@ type VoteEdge {
620626
enum VoteOrderByInput {
621627
id_ASC
622628
id_DESC
629+
createdAt_ASC
630+
createdAt_DESC
631+
updatedAt_ASC
632+
updatedAt_DESC
623633
}
624634
625635
type VotePreviousValues {

0 commit comments

Comments
 (0)