MCPcopy Create free account

hub / github.com/Brickgraph/fast-graph / functions

Functions25 in github.com/Brickgraph/fast-graph

↓ 3 callersFunctioncreate_password_hash
(password)
app/authorisation/auth.py:29
↓ 2 callersFunctionget_user
(username: str)
app/authorisation/auth.py:38
↓ 1 callersFunctionauthenticate_user
(username, password)
app/authorisation/auth.py:48
↓ 1 callersFunctioncreate_access_token
(data: dict, expires_delta: Optional[timedelta] = None)
app/authorisation/auth.py:62
↓ 1 callersFunctionverify_password
(plain_password, password_hash)
app/authorisation/auth.py:33
Functioncreate_node
(label: str, node_attributes: dict, current_user: User = Depends(get_current_active_user
app/graph/crud.py:26
Functioncreate_relationship
(source_node_label: str, source_node_property: str, source_node_property_value: str,
app/graph/crud.py:203
Functioncreate_user
(username: str, password: str, full_name: Optional[str] = None, di
app/user_management/users.py:37
Functioncypher_query
(cypher_string: str)
app/query/cypher.py:21
Functiondelete_node
(node_id: int)
app/graph/crud.py:180
Functiondelete_relationship
(relationship_id: int)
app/graph/crud.py:336
Functiondelete_user
(username: str)
app/user_management/users.py:101
Functionfirst_user
(username: str, password: str, application_password: str,
app/authorisation/auth.py:119
Functionget_current_active_user
(current_user: User = Depends(get_current_user))
app/authorisation/auth.py:94
Functionget_current_user
(token: str = Depends(oauth2_scheme))
app/authorisation/auth.py:73
Functionlogin_for_access_token
(form_data: OAuth2PasswordRequestForm = Depends())
app/authorisation/auth.py:102
Functionread_node_id
**Retrieves data about a node in the graph, based on node ID.** :param **node_id** (str) - node id, used for indexed search :returns: N
app/graph/crud.py:78
Functionread_nodes
Retrieves data about a collection of nodes in the graph, based on node property. :param **node_property** (str) - property to search in node
app/graph/crud.py:114
Functionread_relationship
(relationship_id: int)
app/graph/crud.py:268
Functionread_user
(username: str)
app/user_management/users.py:25
Functionread_users_me
(current_user: User = Depends(get_current_active_user))
app/user_management/users.py:19
Functionreset_password
(new_password: str, current_user: User = Depends(get_current_active_user))
app/user_management/users.py:112
Functionupdate_node
(node_id: int, attributes: dict)
app/graph/crud.py:153
Functionupdate_relationship
(relationship_id: int, attributes: dict)
app/graph/crud.py:301
Functionupdate_user
(attributes: dict, username: str)
app/user_management/users.py:72