【发布时间】:2022-01-18 12:02:50
【问题描述】:
示例(来自 apollo-server):
type Post {
id: ID!
title: String
author: Author
votes: Int @cacheControl(maxAge: 30)
comments: [Comment]
readByCurrentUser: Boolean! @cacheControl(maxAge: 10, scope: PRIVATE)
}
我不明白这在哪里有用,请您提供一些示例。
【问题讨论】:
标签: node.js graphql apollo apollo-server