neo4j-ruby-driver icon indicating copy to clipboard operation
neo4j-ruby-driver copied to clipboard

Neo4j Ruby Driver

Results 33 neo4j-ruby-driver issues
Sort by recently updated
recently updated
newest added
trafficstars

One quick one: I noticed `TrustStrategy.trust_all_certificates` and `LoadBalancingStrategy::LEAST_CONNECTED` seem to be inconsistent. Typo? ```ruby ###################################### # Example 2.8. Trust ###################################### driver = Neo4j::Driver::GraphDatabase.driver(uri, Neo4j::Driver::AuthTokens.basic(user, password), trust_strategy: Neo4j::Driver::Config::TrustStrategy.trust_all_certificates) ###################################### # Example...

Hello. I'm trying to connect to Memgraph, which is a graph db highly compatible with Neo4j. Unfortunately I receive the error in the title. It looks like this driver has...

After updating activegraph from v10.0.1 to v11.4.0 and neo4j-ruby-driver to v4.4.5., authentication logic in my application stops working because it cannot find data from Neo4j database, which is running in...

The [async gem](https://github.com/socketry/async) was recently updated [here](https://github.com/socketry/async/blob/0bcaebad2d15c6870670d38598af39c56fb00e82/lib/async/queue.rb#L85) causing any requests from this gem to fail with an arguments error ``` PageTest#test_page_node_requires_url_and_host_name: ArgumentError: wrong number of arguments (given 0, expected 1)...

Hi @klobuczek As you mentioned in https://github.com/neo4jrb/neo4j-ruby-driver/pull/235 Here you have code changes against the `5.0` branch. About cluster tests and Testkit. If I understand correctly, the ultimate goal is to...

ResultSingleOptional testkit request implementation (#245)

Implement the Driver#execute_query method for jruby as discussed with the following signature: ``` def execute_query(query, auth_token = nil, config = {}, **parameters) end ``` Subsequently, provide the full suite consisting...

testkit-backend should use the Session#execute_read and Session#execute_write instead of the deprecated methods. Make some testkit tests that use this method pass.