Questions tagged [bolt]

The Bolt Protocol is a lightweight (binary) messaging protocol for databases. Bolt is statement oriented with a client-server design; originally created by the team behind Neo4j.

For an in-depth overview, including transport layer details, messaging, serialization, and examples see https://boltprotocol.org/ .

Originally, Bolt was created for use in the Neo4j graph database. PostgreSQL's binary network protocol and the data interchange format MessagePack inspired Bolt.

136 questions
1
vote
0 answers

multiple python scripts accessing neo4j database

I'm using a Neo4j database (local community server) with my own graph and I'm doing some link prediction via python scripts. The graph is quite large so I outsourced the computing to a HPC Cluster. My Problem now is: on the cluster I'd like to run…
T-Man
  • 47
  • 9
1
vote
1 answer

Slack bolt-app: No conversation ID for incoming event

Hello and thanks for reading my request for help. I have a slack bot that's based on "@slack/bolt": "^3.6.0". When a command /open-modal is sent from the client, a modal opens up and lists a few options for next steps. When a user selects one of the…
packetferret
  • 51
  • 1
  • 5
1
vote
1 answer

How to add a script into Bolt?

I have a C# script imported from asset store. I want to import it in Bolt for easier to use. I've researched for a long time, asked many people. Some of them said that I need to click into Tools - Bolt - Unit Option Wizard and add the type of the…
Hungzzz
  • 11
  • 1
1
vote
1 answer

Bolt / Visual Scripting running if statement twice?

So this was working completely fine until today. I start up unity and apparently the gods have cursed me with this if statement running twice??? The variables aren't changing bc they counter eachother out bc its running both sides this is after…
Adm1n
  • 11
  • 1
  • 4
1
vote
0 answers

Influxdb 2.0 Backup Fails with Read:authorizations is unauthorized

I am trying to backup influxdb using backup command as stated in v2.0 doc. https://docs.influxdata.com/influxdb/v2.0/backup-restore/backup/ docker-compose.yaml version: '3' services: influxdb: image: influxdb:2.0 ports: - 8086:8086 …
Anish
  • 1,920
  • 11
  • 28
  • 48
1
vote
0 answers

Neomodel 4.0 Bolt URI for multiple databases

I recently upgraded my Neo4j database from 3.5 to 4.1 and also the neomodel package. I have created multiple databases on the server. Whenever I am running a query, it always runs on a specific database. What do I need to do to target a different…
ak2492
  • 305
  • 1
  • 4
  • 14
1
vote
1 answer

neo4j server side javascript

I have a neo4j desktop (1.4.3) database on my Windows PC. in an html code, I am connectecting to the DB using const driver = neo4j.driver("bolt://IP_ADDRESS:7687", neo4j.auth.basic("neo4j", "PASSWORD")); After that I query the DB and display the…
FEldin
  • 131
  • 7
1
vote
1 answer

Connection problem related to Bolt Protocol and Neo4j using Python

I'm trying to connect to Neo4j using Python but I get an error related to Bolt Protocol in the line driver = GraphDatabase.driver("bolt://localhost:7687", auth=("neo4j", "neo4j")) I ran the code using the driver neo4j-driver 4.0.2. I've also tried…
Anita
  • 65
  • 8
1
vote
1 answer

How to properly connect steps with a puppet bolt plan (yaml format)

I am creating a puppet bolt plan to install docker on 4 hosts, enable swarm on the first host, and then add the other 3 hosts to that swarm. My issue is I do not know how to save this section of the yaml to a variable. steps: - command: docker…
C.Kelly
  • 23
  • 1
  • 4
1
vote
2 answers

Bolt plan in puppet dsl

We have heavily invested in writing puppet modules. Now we have a requirement to use puppet in agent less mode in one of our environment for that we are planing using puppet bolt. My question is if we write puppet plan in puppet dsl. Can we target…
1
vote
0 answers

Neo4j batch update with UNWIND gets slower or even stuck

Following the popular article https://dzone.com/articles/tips-for-fast-batch-updates-of-graph-structures-wi. I'm doing my batch update. I'm using java API to update it and my query looks like: UNWIND $props as row MERGE (n:Entity{eid:row.eid}) ON…
1
vote
2 answers

Facing Unknown Bolt protocol version while integrationg Neo4j(Heroku) in Node js Application

I am a beginner in Neo4j I have tried using the code as suggested in this documentation: https://neo4j.com/developer/javascript/ But I am getting the following error: Neo4jError: Unknown Bolt protocol version: 0 at captureStacktrace…
1
vote
1 answer

Hello World Example For Official Neo4J Driver Is Having A Reference Problem When Calling Session

Ok, I'm in C# using .NET Framework 4.7.2. I'm trying to use the Hello World example https://neo4j.com/developer/dotnet/. I've installed the driver w/ "PM Install-Package Neo4j.Driver-4.0" and have a reference in the project for version 4.0.78.1. For…
TRH
  • 608
  • 1
  • 8
  • 24
1
vote
1 answer

Slack Bolt Clearing view stack

In the view_submission type I set ack to clear the stack like this: await submissionAck({ response_action: 'clear' } as any) First question - why do I have to cast it to any? Without it code throws error Argument of type '{ response_action:…
Patryk
  • 13
  • 3
1
vote
1 answer

How to enable TLS on bolt protocol on Noe4j?

I have configured Neo4j to use encrypted connections bith with https in browser and bolt protocol. I have a valid certificate signed with a CA and the browser works fine accessing and runnign queries. Then problem comes with the cypher shell through…
Shadowtrooper
  • 1,372
  • 15
  • 28
1 2
3
9 10