0
我的解析器得到如何在GraphQL查詢中選擇一部分對象數組?
{ adminMsg:
[
{active: 「y」, text1: 「blah1" } ,
{active: 「n」, text1: 「blah2" }
] };
我的查詢:
{
adminWarn {
adminMsg {
active, text1
}
}
}
我只想數組元素與條件:有效= 'Y'
我在GQL Dokumentation發現沒有辦法寫條件我的查詢。 GQL中是否有解決方案?