In some scenarios you might have the necessity to implement a cancel token pattern to avoid executing HTTP calls if they are no more valid.
An example for such a scenario might be a people picker that executes HTTP call requests but stops once the state for the typed in values has changed.
You can find here an example how such a cancel token might work in react and Axios: https://stackoverflow.com/questions/42896831/cancel-axios-get-request-when-typing-reactjs
Is there a way to have a similar pattern implemented with the Graph SDK?
AB#5998