在 GraphQL Playground 上玩时,我偶然发现了 Ariadne 生成的一个奇怪的端点,我只能通过输入随机单词找不到任何文档,我发现了一些没有很好记录的东西。谁能告诉我这是什么?
query tg_urls {
table(limit: 30, where: { is_valid: { _eq: true } }) {
notes(path: "urls")
}
}
query tg_other {
table_aggregate(limit: 30, where: { is_valid: { _eq: true } }) {
nodes{notes(path:"urls")}
}
}
PS:我实际上想要实现的是从数据库中的所有条目聚合存储在 notes json 对象中的 url。我发现了一种巧妙的未记录方式来访问 json 对象的 subjson。