Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [
- { "$match":
- {
- "$gt": { "timeStamp": self.starting_time },
- "$lt": { "timeStamp": self.finishing_time }
- }
- },
- { "$out": destination_collection_name }
- ]
- # similar to
- [
- { $match:
- {
- date: "20120105"
- }
- },
- { $out: "subset" }
- ]
- # but you have
- {
- "$match":
- {
- "$gt": { "timeStamp": self.starting_time },
- "$lt": { "timeStamp": self.finishing_time }
- },
- { "$out": destination_collection_name }
- }
- # which is incorrect Python dictionary and incorrect JSON
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement