-
Expected BehaviorWhen calling Actual BehaviorInstead, I'm receiving multiple separate QuestionIs this the intended behavior, and if so, what's the recommended approach for knowing when all providers have been found? Or am I potentially missing something in my implementation? Any guidance would be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey! This behaviour is actually intended. It was implemented apart of #2712. You can check the Depending on your use case, you could store the query id in a map along with the set of providers and once the query is done you could take that set from the map and use it for your intended use. |
Beta Was this translation helpful? Give feedback.
Hey! This behaviour is actually intended. It was implemented apart of #2712. You can check the
step
to determine if the event is the last.Depending on your use case, you could store the query id in a map along with the set of providers and once the query is done you could take that set from the map and use it for your intended use.