diff --git a/msgraphcore/graph_session.py b/msgraphcore/graph_session.py index 88827276..94a76beb 100644 --- a/msgraphcore/graph_session.py +++ b/msgraphcore/graph_session.py @@ -39,7 +39,7 @@ def get(self, url: str, **kwargs): :param \*\*kwargs: Optional arguments that ``request`` takes. :rtype: requests.Response """ - return super().get(self._graph_url(url)) + return super().get(self._graph_url(url), **kwargs) @middleware_control.get_middleware_options def post(self, url, data=None, json=None, **kwargs):