Skip to content

Debug a Failure

Start with the symptom, not a guessed file:

Terminal window
nbx search "expired session retries after refresh" --intent debug
Terminal window
nbx def refreshToken --include-content

Check the definition, direct callers, and dependencies before deciding where the fault lives.

When the returned context leaves one relationship unclear, query it directly:

Terminal window
nbx query "MATCH (caller:CODE_SYMBOL)-[r:CALLS]->(target:CODE_SYMBOL) WHERE target.name = 'refreshToken' RETURN caller.name, type(r) LIMIT 20"

Noodlbox explains code structure. Use logs, tests, traces, and a reproducer for failures that depend on runtime state.

Ask your agent:

Use Noodlbox to trace this symptom to its entry points and shared dependencies. Then tell me what runtime evidence would confirm the cause.