Replies: 2 comments
-
|
I've used absinthe, and that was easy to make multiple GraphQL API endpoints. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
You could accomplish this using multiple Spring application contexts. Here's a decent overview of how you could accomplish application context peers. There may be some caveats with DGS but I haven't tried. |
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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to make multiple GraphQL API endpoints like
/user/graphql,/admin/graphqlbecause the view changes depending on who the target is.ex)
I can handle it in resolvers or just making different objects like
User,UserForAdmin, but those are tricky or verbose or easy to make mistakes.Beta Was this translation helpful? Give feedback.
All reactions