Use Microsoft Outlook graphQL API - Credentials

N8N has a Microsoft Credential Support that works fine with the Microsoft Outlook Node.
However the Node has just limited API support.

For example for finding free calendar entries Microsoft offers a graphQL API:

I wanted to use this API with the graphQL Node - but I want to reuse the Microsoft credentials there. Is that possible?

Another idea / feature request would be that the existing mircosoft node offers a generic “graphQL” action.

Any hints welcome.

Craft the request within the HTTP node, which you can add any custom inputs. Usually for graphql, you use a json body like:

{"query": "[graph query here]"}

And you should be able to use the same authentication from the microsoft node into the http node.

thanks. the http node support this. would be nice if the grapgQL node also supports the same authentications.