Hi, is there some documentation what nodes I can expect in which situation exactly? I found some samples in the docs, but not an overview over all possible node combinations I can get in different flows.
Sometimes my nodes look very unexpected. For instance in the Settings Flow I can nodes for the different sections: oidc, password, profile, ...
But I only get one single csrf token, which is not in the default group, but in the oidc group? It seems this is known / intended, because the sample source code explictly checks for the hidden attribute: https://github.com/ory/elements/blob/336e7e08cf0683a66c1ac56100faafb71021eebc/src/react-components/ory/helpers/user-auth-form.tsx#L99. But I still think this makes no sense.
Edit: The assumption that csrf will be in the default group is also reflected in ory integrations https://github.com/ory/integrations/blob/8e5a489123535b7faae94b44f4eae1c596914532/src/ui/index.ts#L165
Currently the approach is basically to just debug & try. See what nodes I get back and write some code that works with the nodes. This also makes it quite complicated to find useful abstractions for components.