gpt4 book ai didi

graphql - 弃用 ApolloServer 中的类型

转载 作者:行者123 更新时间:2023-12-02 03:07:50 26 4
gpt4 key购买 nike

这是弃用 ApolloServer 中字段的模式:

type Car {
id: ID!
make: String
model: String
description: String @deprecated(reason: "Field is deprecated!")
}

但是,我该如何弃用整个类型 - 例如上面的 Car 类型?

最佳答案

不能弃用类型。只有字段和枚举值可能会被弃用。这显示在 @deprecated 指令的定义中 here :

directive @deprecated(
reason: String = "No longer supported"
) on FIELD_DEFINITION | ENUM_VALUE

并解释了here (强调我的):

To support the management of backwards compatibility, GraphQL fields and enum values can indicate whether or not they are deprecated (isDeprecated: Boolean) and a description of why it is deprecated (deprecationReason: String).

Deprecation 旨在向客户端指示停止请求已弃用的元素。由于客户端不请求特定类型,仅请求特定字段,因此弃用类型没有任何意义。

关于graphql - 弃用 ApolloServer 中的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58523390/

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