cypher-shell: add Spanish translation

This commit is contained in:
Darío Hereñú 2024-06-18 15:55:59 -03:00 committed by GitHub
parent 2aebc51eb0
commit 0113ec89f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,33 @@
# cypher-shell
> Abre una sesión interactiva y ejecuta consultas Cypher contra una instancia Neo4j.
> Vea también: `neo4j-admin`, `mysql`.
> Más información: <https://neo4j.com/docs/operations-manual/current/tools/cypher-shell/>.
- Conéctate a una instancia local en el puerto por defecto (`neo4j://localhost:7687`):
`cypher-shell`
- Conéctate a una instancia remota:
`cypher-shell --address neo4j://{{host}}:{{puerto}}`
- Conéctate y proporciona credenciales de seguridad:
`cypher-shell --username {{nombre_de_usuario}} --password {{contraseña}}`
- Conéctate a una base de datos específica:
`cypher-shell --database {{nombre_base_de_datos}}`
- Ejecuta sentencias Cypher en un archivo y lo cierra:
`cypher-shell --file {{ruta/al/archivo.cypher}}`
- Activa el registro en un archivo:
`cypher-shell --log {{ruta/al/archivo.log}}`
- Muestra ayuda:
`cypher-shell --help`