Antonio Barcélos
Antonio Barcélos
Usage example: ```python from importlib.metadata import metadata import neo4j import asyncio from neo4j.api import CLUSTER_READERS_ACCESS, CLUSTER_WRITERS_ACCESS async def main(): driver = neo4j.AsyncGraphDatabase.driver( 'bolt://localhost', auth=neo4j.basic_auth("neo4j", "pass")) async with driver.session() as session:...
Hi @lexcomesdev, could you please share the code which printed the result you share?
@germangamboa95, we are evaluating the solution for the feature request internally. We are drafting some designs, whenever I have some concrete I will post here.
This PR should be reverted when the data time gets implemented in 5.0 server.
Closed due long inactive. This issue could be re-opened if needed.
Hi @dmoree, the duration on the Neo4j drivers (not only the javascript driver) treats `months`, `days`, `seconds` and `nanoseconds` as `integers`. This is defined in the protocol between the database...
Browser uses this driver. So I will double check internally how browser is handling this data type. --- I am not sure if there is something beyond the protocol definition...
@rvazarkar, I could not find the query ``` UNWIND $props AS prop CALL { WITH prop MERGE (n:AZBase {objectid: prop.source}) SET n:AZTenant MERGE (m:AZBase {objectid: prop.target}) SET m:AZApp MERGE (n)-[r:AZContains...
Hi @tomasAlabes, We currently only support browser and nodejs. I'm not that familiar with the React Native ecosystem/environment. You can install and configure replacement libraries like [react-native-tcp](https://www.npmjs.com/package/react-native-tcp). However, I can...
Usage sample: ```javascript import neo4j from 'neo4j-driver' const driver = neo4j.driver( 'neo4j://localhost', neo4j.auth.basic('neo4j', 'pass') ) console.log('Running query direct from the driver') const { records, summary } = await driver.query('RETURN $n...