Skip to content

Neo4J Database Info

Retrieves high-level information about the connected Neo4J database via the Salt data service. Returns a human-readable summary along with the raw JSON payload. Typical details include version, edition, default database, and basic server/cluster metadata.
Preview

Usage

Use this node to verify connectivity and inspect your Neo4J environment before running queries or schema operations. It fits early in a workflow to validate credentials and understand the target database characteristics, or in monitoring/diagnostics flows to capture current database state.

Inputs

FieldRequiredTypeDescriptionExample
credentials_pathTrueCREDENTIALSPath or reference to stored Neo4J credentials configured for the Salt data service. The credentials must be associated with the 'neo4j' service profile.
timeoutFalseINTMaximum time in seconds to wait for the data service to return database information before timing out.60

Outputs

FieldTypeDescriptionExample
textTEXTA readable summary of the Neo4J database information.Neo4J Database Info Version: 5.x Edition: Community Default Database: neo4j Cluster: Single instance
jsonJSONRaw JSON payload with database information as returned by the service.{"version":"5.x","edition":"Community","default_database":"neo4j","server":{"addresses":["bolt://localhost:7687"]}}
htmlHTMLHTML content (if available for this call). For this node, it is typically empty.
xlsxXLSXBinary Excel data (if available for this call). For this node, it is typically empty.
pdfPDFBinary PDF data (if available for this call). For this node, it is typically empty.

Important Notes

  • Credentials: Ensure the provided credentials reference is valid and mapped to the 'neo4j' service profile.
  • Network access: The Salt data service must be able to reach your Neo4J endpoint (host, port, and protocol).
  • Timeouts: Increase the timeout for slow or remote environments to avoid premature failures.
  • Read permissions: The credentials must have sufficient permissions to query database metadata.

Troubleshooting

  • Authentication failed: Verify username/password or token in the credentials reference and that it targets the correct Neo4J instance.
  • Connection error / timeout: Check network/firewall rules, host/port, protocol (bolt/neo4j with or without TLS), and increase the timeout input.
  • Empty or partial info: Ensure the connected user has permissions to read database and system metadata.
  • Service unavailable: Confirm the Salt data service is running and healthy, and retry once it is reachable.