cypher-shell: add Spanish translation (#13067)

pull/28/head
Darío Hereñú 2024-07-07 04:16:50 -03:00 committed by GitHub
parent b375e0d9e8
commit d406f692b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 33 additions and 0 deletions

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`