langchain_community.graphs.hugegraph.HugeGraph¶

class langchain_community.graphs.hugegraph.HugeGraph(username: str = 'default', password: str = 'default', address: str = '127.0.0.1', port: int = 8081, graph: str = 'hugegraph')[source]¶

HugeGraph wrapper for graph operations.

Security note: Make sure that the database connection uses credentials

that are narrowly-scoped to only include necessary permissions. Failure to do so may result in data corruption or loss, since the calling code may attempt commands that would result in deletion, mutation of data if appropriately prompted or reading sensitive data if such data is present in the database. The best way to guard against such negative outcomes is to (as appropriate) limit the permissions granted to the credentials used with this tool.

See https://python.langchain.com/docs/security for more information.

Create a new HugeGraph wrapper instance.

Attributes

get_schema

Returns the schema of the HugeGraph database

Methods

__init__([username, password, address, ...])

Create a new HugeGraph wrapper instance.

query(query)

refresh_schema()

Refreshes the HugeGraph schema information.

Parameters
  • username (str) –

  • password (str) –

  • address (str) –

  • port (int) –

  • graph (str) –

__init__(username: str = 'default', password: str = 'default', address: str = '127.0.0.1', port: int = 8081, graph: str = 'hugegraph') None[source]¶

Create a new HugeGraph wrapper instance.

Parameters
  • username (str) –

  • password (str) –

  • address (str) –

  • port (int) –

  • graph (str) –

Return type

None

query(query: str) List[Dict[str, Any]][source]¶
Parameters

query (str) –

Return type

List[Dict[str, Any]]

refresh_schema() None[source]¶

Refreshes the HugeGraph schema information.

Return type

None

Examples using HugeGraph¶