If I use the graphql interface and send:
{
posts(input: {terms: {limit: 3, after: "2021-01-01", before: "2022-01-01"}}){
results {
postedAt
}
}
}
I get three dates from 2021, as you'd expect.
If instead I send:
{
comments(input: {terms: {limit: 3, after: "2021-01-01", before: "2022-01-01"}}){
results {
postedAt
}
}
}
I instead get three dates from today.
I've also tried using postId and a few other values from CommentsViewTerms, but none of them seem to have any effect.
┆Issue is synchronized with this Asana task by Unito