Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Brickgraph/fast-graph
/ functions
Functions
25 in github.com/Brickgraph/fast-graph
⨍
Functions
25
◇
Types & classes
10
↳
Endpoints
18
↓ 3 callers
Function
create_password_hash
(password)
app/authorisation/auth.py:29
↓ 2 callers
Function
get_user
(username: str)
app/authorisation/auth.py:38
↓ 1 callers
Function
authenticate_user
(username, password)
app/authorisation/auth.py:48
↓ 1 callers
Function
create_access_token
(data: dict, expires_delta: Optional[timedelta] = None)
app/authorisation/auth.py:62
↓ 1 callers
Function
verify_password
(plain_password, password_hash)
app/authorisation/auth.py:33
Function
create_node
(label: str, node_attributes: dict, current_user: User = Depends(get_current_active_user
app/graph/crud.py:26
Function
create_relationship
(source_node_label: str, source_node_property: str, source_node_property_value: str,
app/graph/crud.py:203
Function
create_user
(username: str, password: str, full_name: Optional[str] = None, di
app/user_management/users.py:37
Function
cypher_query
(cypher_string: str)
app/query/cypher.py:21
Function
delete_node
(node_id: int)
app/graph/crud.py:180
Function
delete_relationship
(relationship_id: int)
app/graph/crud.py:336
Function
delete_user
(username: str)
app/user_management/users.py:101
Function
first_user
(username: str, password: str, application_password: str,
app/authorisation/auth.py:119
Function
get_current_active_user
(current_user: User = Depends(get_current_user))
app/authorisation/auth.py:94
Function
get_current_user
(token: str = Depends(oauth2_scheme))
app/authorisation/auth.py:73
Function
login_for_access_token
(form_data: OAuth2PasswordRequestForm = Depends())
app/authorisation/auth.py:102
Function
read_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
Function
read_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
Function
read_relationship
(relationship_id: int)
app/graph/crud.py:268
Function
read_user
(username: str)
app/user_management/users.py:25
Function
read_users_me
(current_user: User = Depends(get_current_active_user))
app/user_management/users.py:19
Function
reset_password
(new_password: str, current_user: User = Depends(get_current_active_user))
app/user_management/users.py:112
Function
update_node
(node_id: int, attributes: dict)
app/graph/crud.py:153
Function
update_relationship
(relationship_id: int, attributes: dict)
app/graph/crud.py:301
Function
update_user
(attributes: dict, username: str)
app/user_management/users.py:72