0
私はgraphqlの新機能ですが、特定のdatetimeの後にplansExpirationDate値を指定して結果をフィルタリングする単純なクエリを作成しようとしています。どのようにそのフィルタを書くのですか?graphqlでの日付によるフィルタリング
{
loans (filters: {gender: male, status:funded, country: ["KE", "US"]}, sortBy: newest, limit: 2) {
totalCount
values {
name
status
loanAmount
image {
url(presetSize: small)
}
activity {
name
}
plannedExpirationDate
location {
country {
isoCode
name
}
}
lenders (limit: 100) {
totalCount
}
... on LoanPartner {
partnerName
}
... on LoanDirect {
trusteeName
}
}
}
}