Replies: 1 comment
-
Beyond the 2 config properties you listed above, we don't have any other knobs to configure the path. I don't think it would work with adding query parameters in any case. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
In my
application.properties
file, I have set the path for the graphql and graphiql endpoints like so:I'm able to access the Graphiql interface: http://localhost:8080/customPrefix/graphiql
When using Graphiql, the network POST request from the interface to the service is: http://localhost:8080/customPrefix/graphql
My service sits behind a proxy, so the call to the /graphql endpoint sits behind another URL prefix. Is there a way to configure this call path to the service without changing the graphiql path? In particular, I need to add another prefix and add query parameters to the URL, i.e. something like http://localhost:8080/anotherPath/customPrefix/graphql?param1=value1¶m2=value2
I saw this issue: #171, but it doesn't quite match what I want to do here.
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions