AuraDB

401 Unauthorized Error via TypeScript Driver despite valid credentials on Aura Console
Subject: Inquiry regarding 401 Unauthorized error in Neo4j TypeScript Driver Dear Neo4j Aura Support Team, I am writing to seek assistance with a connection issue I am encountering with my Neo4j Aura instance. Issue Description: I am consistently receiving a 401 Unauthorized error when attempting to connect to my Aura database using the official neo4j-driver (TypeScript/Node.js). Observed Behavior: Web Console: I can successfully log in and verify my database status using my credentials (URI, Username, and Password) through the Aura web console without any issues. Driver Connection: However, when I use the exact same credentials in my code, the connection fails with a 401 error during driver initialization or server info retrieval. My Connection Setup: typescript const uri = process.env.NEO4J_URI; // e.g., neo4j+s:// xxxx.databases.neo4j.io const user = process.env.NEO4J_USERNAME; // e.g., 'neo4j' const password = process.env.NEO4J_PASSWORD; const driver = neo4j.driver(uri, neo4j.auth.basic(user, password)); Troubleshooting Done: Confirmed that the URI, username, and password do not have any leading or trailing whitespaces. Verified that the credentials work perfectly on the Aura web portal. Ensured the URI uses the neo4j+s protocol required for Aura. Could you please provide feedback on whether this could be an issue with the Aura instance's internal state, account permissions, or if there is a specific configuration for the TypeScript driver that I might be missing? I look forward to your guidance. Best regards, TACO
Bug report: Caption selection in AuraDB Query/Explore no longer works
Summary Since the last update to the AuraDB Console, the Caption selection in the Query/Explore visualization has stopped working. The UI still shows a list of possible captions (such as Name, NodeID, Relation Type), but the graphics completely ignores this choice and always shows the same property regardless of the caption selected. surrounding Neo4j AuraDB Console (preview) Query Tool → Graph View Browser: Edge (but problem is browser‑independent) Steps to reproduce Run a simple query, for example: cypher MATCH (n:category) RETURN and ABS nodes Open the Customize Style sidebar. Choose a different caption, such as Name instead of Relation Type. Observe the Graph view. Current behavior The Graph view will continue to show the same property (e.g., relationshipType) regardless of which caption is selected in the UI. The caption setting has no effect on node labels. Alternative methods such as RETURN n AS node, n.Naam AS label, or projections (n {.*, name: n.Naam}) no longer work because: Aliases are ignored by the Graph view. Projections are no longer recognized as nodes, so the Graph tab disappears. Expected behavior The caption selection in the UI determines which property appears in the node dots. This was the case before the update and is consistent with documentation and Neo4j desktop/Bloom behavior. Impact The Caption feature is now effectively redundant and misleading. It is no longer possible to show a meaningful property (such as Name) in the visualization. This significantly limits the usability of the Query/Explore visualization. Conclusion This appears to be a clear regression in the AuradB preview UI: the caption setting is still offered but no longer works. Please confirm and/or repair.
Load More