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 b01d73d commit c747411Copy full SHA for c747411
examples/examples.py
@@ -294,7 +294,7 @@
294
list_alert_rules_r = j1.list_alert_rules()
295
print("list_configured_alert_rules()")
296
print(list_alert_rules_r)
297
-print(len(list_alert_rules_r['questionInstances']))
+print(len(list_alert_rules_r))
298
299
# create_alert_rule
300
webhook_token = "<SECRET>"
jupiterone/client.py
@@ -730,7 +730,7 @@ def list_alert_rules(self):
730
731
cursor = r['data']['listRuleInstances']['pageInfo']['endCursor']
732
733
- # cursor query until reached last page
+ # cursor query until last page fetched
734
data = {
735
"query": LIST_RULE_INSTANCES,
736
"variables": {
0 commit comments