We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4f23be commit ab31a35Copy full SHA for ab31a35
src/keboola/facebook/extractor/query.clj
@@ -84,6 +84,9 @@
84
(defn query-path-ratings? [{:keys [path] :or {path ""}}]
85
(string/includes? (or path "") "ratings"))
86
87
+(defn query-path-stories? [{:keys [path] :or {path ""}}]
88
+ (string/includes? (or path "") "stories"))
89
+
90
(defn query-need-userinfo? [{:keys [fields path] :or {fields "" path ""}}]
91
(or (some #(string/includes? (or fields "") %) ["likes" "from" "username"])
92
(string/includes? (or path "") "likes")))
@@ -93,6 +96,7 @@
93
96
(or (query-contains-insights? query)
94
97
(query-path-ratings? query)
95
98
(query-path-feed? query)
99
+ (query-path-stories? query)
100
(query-path-posts? query)
101
(query-need-userinfo? query))))
102
0 commit comments