Skip to content

Commit

Permalink
fix: query updated to use platform agnostic raw data!
Browse files Browse the repository at this point in the history
  • Loading branch information
amindadgar committed Sep 16, 2024
1 parent fd7fe91 commit 8c3e26a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/mongo_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_raw_data_count(self, from_date: datetime):

raw_data_count = client[self.platform_id][
"rawmemberactivities"
].count_documents({"createdDate": {"$gte": from_date}})
].count_documents({"date": {"$gte": from_date}})
return raw_data_count

def get_guild_members_count(self) -> int:
Expand Down

0 comments on commit 8c3e26a

Please sign in to comment.