Replies: 3 comments 7 replies
-
Try to look at this PR https://github.com/Netflix/dgs-framework/pull/302/files |
Beta Was this translation helpful? Give feedback.
3 replies
-
Did you try the latest version?
…On Fri, May 28, 2021, 8:19 AM DEBAPRIYA PATRA ***@***.***> wrote:
@sbilello <https://github.com/sbilello> Which version includes these
changes? Because I have graphql-dgs-3.10.2 and I dont see this method in
DgsQueryExecutor.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#353 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAN3GUE5PBTVU6JKQ7YA5WDTP6X7BANCNFSM45ILZDWQ>
.
|
Beta Was this translation helpful? Give feedback.
1 reply
-
What you are asking looks like something related to
https://github.com/dependabot CI/CD pipeline in the automation.
I don't work for Netflix.
Best,
Sergio
…On Fri, May 28, 2021 at 11:33 AM DEBAPRIYA PATRA ***@***.***> wrote:
@sbilello <https://github.com/sbilello> Looks like the version is hard
coded in our internal start dependency jar due to which I am not getting
the latest version.
implementation
platform("com.netflix.graphql.dgs:graphql-dgs-platform-dependencies:${netflixDgsVersion}")
Is there a way we can automatically pull the latest release version when
you are releasing from your end instead of we configure the version in our
end ?
it will be really helpful if you can help me on that. I heard from one of
my team member that you guys have way to enforce the platform now.
Thanks,
Deba
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#353 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAN3GUH2FYG5RKS2GXPRYTDTP7OWFANCNFSM45ILZDWQ>
.
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have a bunch of graphql queries which requires to have few headers. With the current version of DGS, I can not use
executeAndExtractJsonPath()
method ofDgsQueryExecutor
because this does not accept a header object.So I was trying to use
fun execute(query: String, variables: Map<String, Any>, extensions: Map<String, Any>?, headers: HttpHeaders)
function in my test but looks like its not triggering my datafetcher only. I could not figure out what is the mistake I am doing here.Here is my code:
Any help would be appreciated!
Thanks In advance
Beta Was this translation helpful? Give feedback.
All reactions