You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying WG fro a while now, I'm using keycloak as open id server, in keycloak we can specify custom claims and roles
for now we can inject some claims into operations, this will be very useful if we can extend the list of the current claims that we can inject in operations to all claims provided by open id, or even custom one,
I dont know if this will be possible regarding typing in graphql schemas
for exp keycloak user_id, first_name, last_name etc ..
as for exp
authProviders.openIdConnect({
id: "keycloak", // you have to choose this ID
clientId: "client-id", // client ID from Auth0
clientSecret: process.env.client_secret || "", // client secret from Auth0
issuer: "http://keycloak.local/auth/realms/Realm",
claims : ["email", "first_name", "last_name", "user_id", "roles" ... ]
}),
this claims can be used by the code generators to be available in the custom directive
The text was updated successfully, but these errors were encountered:
hello
I was trying WG fro a while now, I'm using keycloak as open id server, in keycloak we can specify custom claims and roles
for now we can inject some claims into operations, this will be very useful if we can extend the list of the current claims that we can inject in operations to all claims provided by open id, or even custom one,
I dont know if this will be possible regarding typing in graphql schemas
for exp keycloak user_id, first_name, last_name etc ..
as for exp
this claims can be used by the code generators to be available in the custom directive
The text was updated successfully, but these errors were encountered: