I'm trying to get in touch with Apache Camel, but it's behaviour is so far confusing.
For example, I'm using platformHttp and declare a route under which my endpoint should be available.
from(platformHttp("/api/test"))
.to("https:google.com?bridgeEndpoint=true")
.setBody(simple("${body}"));
Calling it will call the sub-route https://google.com/api/test instead of https://google.com
Why is that and how would I prevent Apache Camel from taking the route and appending it to the called route in my .to() ?