print_database_info = { label = "Print Database Info" shortcut = "pdi" requires_profile = true parameters = { } expression = ` # Get the database info get_database_access(); node database_info = get_database_info(internal.profile_name, true); # Print the database info echo(node_as_string(database_info)); ` } # print_database_info