How to create GraphMakie with WGLMakie?

I don’t have a GPU to use Makie, so I have to use WGLMakie, can I use GraphMakie with it? How?
Thank you for your advice.

You don’t need to have a GPUs to use Makie. It helps when using GLMakie but it works just fine without them.

Thank you but it doesn’t show me the graph, only the blank white window. Running:

using WGLMakie, GraphMakie, Graphs, Makie
g = complete_graph(10)
graphplot(g)

if you want WGLmakie you also need JSServe. So, you still have some steps missing. Try the toy examples here WGLMakie and see things work.