I’m using React Admin with GraphQL and ra-data-hasura. My problem is that the Introspection Query is made only when the app starts (user has role guest before login) and after login, the Introspection Query does not refetch, so I get errors for the resources that the logged in user should have access to. After a reload, a new introspection query is made and the resources seem to be available. Any ides how can I force the introspection query after login? or refresh the entire data provider
I tried to force refetching the Introspection Query, but it did not work. I think it needs a full data provider refresh to work
New contributor