architxt.cli.export

architxt.cli.export#

Functions

export_graph([database, uri, username, password])

Export the database as a property graph.

export_sql([database, uri])

Export the database as a relational database.

architxt.cli.export.export_graph(database=typer.Argument(..., help='Path to load the database.', exists=True, readable=True), *, uri=typer.Option(..., help='Database connection string.'), username=typer.Option('neo4j', help='Username to use for authentication.'), password=typer.Option(None, help='Password to use for authentication.'))[source]#

Export the database as a property graph.

Return type:

None

architxt.cli.export.export_sql(database=typer.Argument(..., help='Path to load the database.', exists=True, readable=True), *, uri=typer.Option(..., help='Database connection string.'))[source]#

Export the database as a relational database.

You need to have the necessary driver installed in your environment.

Return type:

None