You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- ``question_uuid`` - Retrieve events from this specific question
106
+
- ``parent_question_uuid`` - Retrieve events from questions triggered by the same parent question (this doesn't include the parent question's events)
107
+
- ``originator_question_uuid`` - Retrieve events for the entire tree of questions triggered by an originator question (a question asked manually through ``Child.ask``; this does include the originator question's events)
106
108
- ``kind`` - Only retrieve this kind of event if present (e.g. "result")
107
109
- ``include_backend_metadata`` - If ``True``, retrieve information about the service backend that produced the event
108
110
- ``limit`` - If set to a positive integer, limit the number of events returned to this
109
111
112
+
.. note::
113
+
114
+
Only one of ``question_uuid``, ``parent_question_uuid``, and ``originator_question_uuid`` can be provided at one time.
115
+
110
116
111
117
.. collapse:: See an example output here...
112
118
@@ -116,8 +122,8 @@ access the event store and run:
116
122
[
117
123
{
118
124
"event": {
119
-
"datetime": "2024-03-06T15:44:18.156044",
120
-
"kind": "delivery_acknowledgement"
125
+
"kind": "delivery_acknowledgement",
126
+
"datetime": "2024-03-06T15:44:18.156044"
121
127
},
122
128
},
123
129
{
@@ -149,21 +155,10 @@ access the event store and run:
0 commit comments