Since your $match refers to $$NOW, you have to use the $expr syntax:
{ "$match" : {
"$expr" : { "$gt" : [ "$created_at" , {$subtract: [ "$$NOW" , 7*30*24*60*60*1000 ] } ] }
} }
Since your $match refers to $$NOW, you have to use the $expr syntax:
{ "$match" : {
"$expr" : { "$gt" : [ "$created_at" , {$subtract: [ "$$NOW" , 7*30*24*60*60*1000 ] } ] }
} }