-
-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to cascade the GraphQL field resolvers in Springboot app #1217
Comments
If I understand your problem statement correctly, you could try setting the following config in your build configuration: |
Hi,
Thanks for the reply.
It helped me get the arguments in the request . I then need to cascade thus
to another GraphQL call that I make further down the line in the
application. Is there a way for it to be done ?
Thanks,
Veera
…On Wed, 24 May, 2023, 09:05 Bogdan Kobylynskyi, ***@***.***> wrote:
If I understand your problem statement correctly, you could try setting
the following config in your build configuration:
*generateDataFetchingEnvironmentArgumentInApis=true*
—
Reply to this email directly, view it on GitHub
<#1217 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BAB76XXPNXDPMMQBG7TBSZDXHWXNLANCNFSM6AAAAAAYM467CQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Hi @kobylynskyi , |
@dkveera16 can you please clarify a little bit more (perhaps with some examples) about what are you trying to achieve. Thanks. |
Hi, All three apps have the same schema. So if I call AGG app and say I need only title, I should be able to pass this to B and C and retrieve only title from B and C. Hope this clarifies the question |
Hi @kobylynskyi , Did you get a chance to look into this? |
I am trying to build an aggregator function using GraphQL as the front , which invokes REST and GraphQL services.
I am able to get the list of request fields from DataFetchingEnvironment variable.
I am unable to cascade the list of fields and use it for the next call that I make to another GraphQl Service.
Is there way for this to be done?
The text was updated successfully, but these errors were encountered: