🔍 Code Extractor

Browse Components

Showing 20 of 2143 components

  • function get_lims_sampletestresults_with_references_samples_lims_samples

    Queries a Neo4j graph database to retrieve LIMS_Samples nodes that are connected to a specific LIMS_SampleTestResults node through a REFERENCES_SAMPLES relationship.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1289-1296

    neo4j graph-database lims laboratory sample-management
  • function get_lims_sampletestresultdetails_with_references_samples_lims_samples

    Queries a Neo4j graph database to retrieve LIMS_Samples nodes that are connected to a specific LIMS_SampleTestResultDetails node through a REFERENCES_SAMPLES relationship.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1257-1264

    neo4j graph-database lims laboratory sample-management
  • function create_references_establishment_relationship

    Creates a REFERENCES_ESTABLISHMENT relationship in a Neo4j graph database between a LIMS_Requests node and a dbo_Establishment node, with optional properties on the relationship.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1234-1254

    neo4j graph-database relationship-creation cypher-query lims
  • function get_lims_requests_with_references_establishment_dbo_establishment

    Queries a Neo4j graph database to retrieve dbo_Establishment nodes that are connected to a specific LIMS_Requests node via a REFERENCES_ESTABLISHMENT relationship.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1225-1232

    neo4j graph-database cypher-query lims database-query
  • function create_references_parameters_relationship

    Creates a REFERENCES_PARAMETERS relationship between two LIMS_Parameters nodes in a Neo4j graph database, with optional properties on the relationship.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1202-1222

    neo4j graph-database relationship LIMS parameters
  • function get_lims_parameters_with_references_parameters_lims_parameters

    Retrieves LIMS_Parameters nodes from a Neo4j graph database that are connected to a source LIMS_Parameters node via REFERENCES_PARAMETERS relationships.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1193-1200

    neo4j graph-database cypher-query lims parameters
  • function create_dbo_usergroup

    Creates a new dbo_UserGroup node in a Neo4j graph database with specified properties and returns the created node.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1180-1189

    neo4j graph-database database create node
  • function get_dbo_usergroup_by_uid

    Retrieves a single dbo_UserGroup node from a Neo4j graph database by matching its unique identifier (UID).

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1171-1178

    neo4j graph-database database-query user-management cypher
  • function get_dbo_usergroup_by_id

    Retrieves a single dbo_UserGroup node from a Neo4j graph database by its unique ID.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1162-1169

    neo4j graph-database query user-group database-retrieval
  • function get_all_dbo_usergroup

    Queries a Neo4j graph database to retrieve all nodes labeled as 'dbo_UserGroup' with a configurable limit on the number of results returned.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1153-1160

    neo4j graph-database cypher-query database-query user-groups
  • function create_dbo_treatments

    Creates a new node labeled 'dbo_Treatments' in a Neo4j graph database with the specified properties and returns the created node.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1141-1150

    neo4j graph-database database create insert
  • function get_dbo_treatments_by_uid

    Retrieves a single dbo_Treatments node from a Neo4j graph database by matching its unique identifier (UID).

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1132-1139

    neo4j graph-database query lookup treatments
  • function get_dbo_treatments_by_id

    Retrieves a single dbo_Treatments node from a Neo4j graph database by its unique ID.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1123-1130

    neo4j graph-database query database-retrieval treatments
  • function get_all_dbo_treatments

    Retrieves all nodes labeled as 'dbo_Treatments' from a Neo4j graph database with a configurable limit on the number of results returned.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1114-1121

    neo4j graph-database cypher-query database-query treatments
  • function create_dbo_texttranslations

    Creates a new node labeled 'dbo_TextTranslations' in a Neo4j graph database with the specified properties and returns the created node.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1102-1111

    neo4j graph-database database create insert
  • function get_dbo_texttranslations_by_uid

    Retrieves a single dbo_TextTranslations node from a Neo4j graph database by matching its unique identifier (UID).

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1093-1100

    neo4j graph-database query translation database
  • function get_dbo_texttranslations_by_id

    Retrieves a single dbo_TextTranslations node from a Neo4j graph database by matching its unique ID.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1084-1091

    neo4j graph-database query database-retrieval text-translations
  • function get_all_dbo_texttranslations

    Retrieves all nodes labeled as dbo_TextTranslations from a Neo4j graph database with a configurable limit on the number of results returned.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1075-1082

    neo4j graph-database query translations text-processing
  • function create_dbo_tnv

    Creates a new node with label 'dbo_TNV' in a Neo4j graph database with specified properties and returns the created node.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1063-1072

    neo4j graph-database database create node
  • function get_dbo_tnv_by_uid

    Retrieves a single dbo_TNV node from a Neo4j graph database by matching its unique identifier (UID).

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py | Lines: 1054-1061

    neo4j graph-database query database-retrieval node-lookup