我有一个在Playground中运行完美的查询,但是当我尝试将其放在Angular中并获取数据结果时,它不起作用。
这是我的查询:
query countFeatureInProject {
commitsConnection (where: {
name_not_starts_with : "Merge"
branch :{
name_starts_with: "feature"
project: {
name: "myProjectName"
}
}
})
{
aggregate {
count
}
}
}
我的问题是:是否可以像使用Playground一样在Angular中编写查询?
感谢您的关注!
编辑:如果您需要更多详细信息,请不要犹豫!