diff --git a/node/node.go b/node/node.go index 2603762684..5660d0d77c 100644 --- a/node/node.go +++ b/node/node.go @@ -163,7 +163,7 @@ func (n *Node) Start(ctx context.Context) error { } log.InfoContext(ctx, fmt.Sprintf("Providing HTTP API at %s PlaygroundEnabled=%t", n.Server.Address(), http.PlaygroundEnabled)) - log.InfoContext(ctx, fmt.Sprintf("Providing GraphQL endpoint at %s/v0/graphql", n.Server.Address())) + log.InfoContext(ctx, fmt.Sprintf("Providing GraphQL endpoint at %s/api/v0/graphql", n.Server.Address())) go func() { if err := n.Server.Serve(); err != nil && !errors.Is(err, gohttp.ErrServerClosed) { log.ErrorContextE(ctx, "HTTP server stopped", err)