Replies: 2 comments 5 replies
-
What do you mean by introspection by query? Do you want to let people introspect some of introspection fields but not others? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Sorry, should have said introspection by request.
I want to define introspection based on request. E.g. doing a launchdarkly
or statsig check based on IP
…On Tue, Feb 27, 2024 at 10:12 Rafał Pitoń ***@***.***> wrote:
What do you mean by introspection by query? Do you want to let people
introspect some of introspection fields but not others?
—
Reply to this email directly, view it on GitHub
<#1168 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACS2VN2EUCEUGYAV2UHS3GTYVYOXXAVCNFSM6AAAAABD3RJKJKVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DMMBYHE4TK>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to enable introspection dynamically. what's the best way to do that?
right now, it seems introspection has to be enabled all or nothing and I'd like to check based on the request and then configure
GraphQL
based on that.using my own handler and calling
configure
in each doesn't quite work because there could be multiple requests at the same time. The best way I have so far is to expose a different endpoint and a different instance ofGraphQL
there and perform the check in a customGraphQLHTTPHandler
'shandle_request
method but that doesn't seem elegant.Beta Was this translation helpful? Give feedback.
All reactions