Trying to start Apollo using tsed

So I am trying to start Apollo on the @Configuration of tsed, it seems to be running but I have really no idea on how to access to do tests (I tried creating a standalone server and it works great, but I need to make it work with tsed)

so far this is what I have on my server config:

const schema = buildSchema({ resolvers: [ProductResolver] });

const serverConfiguration: Partial<TsED.Configuration> = {
apollo: {
server1: {
path: “/”,
schema,

},
},

I would like to know how to access from there since the path doesnt seem to work :frowning: