gpt4 book ai didi

node.js - graphql prisma nodejs postgresql 如何将创建日期/更新字段添加到 graphql 类型?

转载 作者:行者123 更新时间:2023-11-29 13:43:01 25 4
gpt4 key购买 nike

我正在使用 graphql + prisma(在本地 docker 中)、nodejspostgresql。 我怎样才能让它添加一些字段,比如 created/edited date?

例如。我有这种类型:

type Post {
id: ID! @unique
title: String!
content: String!
published: Boolean! @default(value: "false")
author: User!
}

如何添加日期之类的字段。使其等于元素创建/更新的日期?

最佳答案

在 datamodel.prisma 中进行此更改:

type Post {
id: ID! @unique
title: String!
content: String!
published: Boolean! @default(value: "false")
author: User!
updatedAt: DateTime!
createdAt: DateTime!
}

在 schema.graphql 中进行此更改:

updatedAt: String!
createdAt: String!

关于node.js - graphql prisma nodejs postgresql 如何将创建日期/更新字段添加到 graphql 类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52571170/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com