我正在使用graphql-compose-mongoose
,并且我想创建一个自定义的Date标量,该标量将接受突变时的日期对象,但会将其作为时间戳保存到数据库中。反之则适用于查询,它将从数据库获取时间戳,但将返回日期对象。
我知道在graphql模式中是可能的:https://www.apollographql.com/docs/graphql-tools/scalars/
在graphql-compose中也可能:https://graphql-compose.github.io/docs/5.12.0/basics/understanding-types.html
但是在graphql-compose-mongoose中没有提到类似的东西。我需要在模型中定义标量,但是据我所知,在模型中定义字段类型时,它只能是猫鼬模式,但在graphql中,在tc中定义自定义标量。 / p>