我正在将 WPGraphQL 与 Gridsome 一起使用。我正在尝试查询用户头像以获取帖子评论。这是我的查询
comments(where: {order: ASC}) {
edges {
node {
id
author {
node {
__typename
... on User {
id
avatar {
url
}
}
}
}
}
}
}
此查询在 WPGraphql IDE 中有效并返回头像 URL,但在 Gridsome 中尝试时出现错误。
Error: Unknown type "User".
知道为什么会出现这个错误吗?谢谢。