作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 type User
.用户也可以是type TeamMember
. User
之间的唯一区别和 TeamMember
是一个添加字段 teamRole: String
.所以,我很想做类似下面的事情,以避免重复定义所有用户的字段......
type User {
id: ID!,
name: String,
(many other field defs)
}
type TeamMember extends User {
teamRole: String,
}
extend
将是答案,但它似乎更像是 javascript 的
prototype
最佳答案
使用像 graphql-s2s 这样的模式转译器来实现继承可能是矫枉过正,而且 graphql-s2s 到 2021 年就已经过时了。
看看这个 Apollo Server 指令:https://github.com/jeanbmar/graphql-inherits
const typeDefs = gql`
directive @inherits(type: String!) on OBJECT
type Car {
manufacturer: String
color: String
}
type Tesla @inherits(type: "Car") {
manufacturer: String
papa: String
model: String
}
`;
class InheritsDirective extends SchemaDirectiveVisitor {
visitObject(type) {
const fields = type.getFields();
const baseType = this.schema.getTypeMap()[this.args.type];
Object.entries(baseType.getFields()).forEach(([name, field]) => {
if (fields[name] === undefined) {
fields[name] = field;
}
});
}
}
关于inheritance - 如何在 GraphQL 中继承或扩展 typeDef,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47523384/
我是一名优秀的程序员,十分优秀!