我在数据库中有多个客户,我希望使用Hasura GRAPHIQL以json格式存储该数据,并从中准备图表。当我获取数据时,我只能获取单个客户数据。所以我想分别获取所有客户数据(就像我们在sql中使用按组查询)。因此任何人都可以为此提供帮助。 非常感谢
我的代码是
{
table(where: {row_num: {_eq: 1},customer_c: {_eq: "ICICICARD"}},
distinct_on: customer_c)
{
customer_c
}
table_aggregate(where: {row_num: {_eq: 1},customer_c: {_eq: "ICICICARD"}}, distinct_on: [id])
{
aggregate {
count
sum {
amount
}
}
}
}