Executing Apollo queries from Meteor server side code

Are there any examples on how to execute Apollo queries from Meteor server side code?
Seems like it should work but I’m unsure how to get it working?

Are you using the meteor/apollo package? There are tons of examples if I got you right. Here is one of them: https://github.com/janikvonrotz/meteor-apollo-accounts-example

I think the easiest way is to use Apollo Client and just call client.query. Does that work? You probably need to use an absolute URL to the server since a relative URL won’t work inside Node.

Thanks a bunch @sashko! client.query worked.
Nice stuff @janikvonrotz