@pipedream/pushshift_reddit_search
Version:
Pipedream Pushshift Reddit Search Components
29 lines (27 loc) • 374 B
JavaScript
const SORT_OPTIONS = [
"asc",
"desc",
];
const SORT_TYPE_OPTIONS = [
"score",
"num_comments",
"created_utc",
];
const AGGS_OPTIONS = [
"author",
"link_id",
"created_utc",
"subreddit",
];
const FREQUENCY_OPTIONS = [
"second",
"minute",
"hour",
"day",
];
export default {
SORT_OPTIONS,
SORT_TYPE_OPTIONS,
AGGS_OPTIONS,
FREQUENCY_OPTIONS,
};