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
1 answer

Neo4j Bolt: The client is unauthorized due to authentication failure

I have a Bolt Authentication issue that I don't know how to solve. I restored a backup from my online provider to my local machine. I can launch the browser and run "CALL db.schema" and the query returns. But when i try to just select a sample set…
Michael Black
  • 661
  • 11
  • 24
1
vote
0 answers

Firebase-bolt gives ***TYPE RECURSION***" error

I have the following type definitions in my .bolt file called tasks.bolt //... type Channel { name: ShortNonEmptyString, tasks: Map, members: Map } type User { displayName: ShortNonEmptyString, tasks:…
user6338195
1
vote
1 answer

What to use instead of GraphDatabaseSettings.BoltConnector?

I'm using Neo4j's Java driver to access the db with Bolt protocol. If I have a look at the Neo4j documentation, I see that I should use GraphDatabaseSettings.BoltConnector for settings. However my IDE says it's deprecated. Do you know what replaces…
sandor
  • 643
  • 6
  • 16
0
votes
0 answers

Neo4j throwing a ProtocolException when cancelling a transaction

Using neo4j as the db for an api, if a user makes repeated requests using the same or similar parameters (for example, they're requesting many pages of data by scrolling through a list and only the last is actually required) I want to cancel the…
pilsdumps
  • 495
  • 1
  • 7
  • 23
0
votes
0 answers

What is the Slack CLI and how is it used?

I'm going to develop a Slack app. I've followed an official Slack.com tutorial on Bolt to make a simple app and I kinda get what's going on there. I've followed another tutorial for the Slack CLI that also makes an app and I don't really get why it…
chrisv
  • 1
0
votes
0 answers

How to access forward information with bolt java library for slack

I am trying to use bolt java library to integrate forward information in my app. I have some problems to access the right field in the object. First of all I fetch the message using Conversations.history…
0
votes
1 answer

What is the right way to send Messages to a channel or user via a slackbot?

I am working on a solution that automates a certain process using a slackbot. The actual process is automated using a pipeline. If a user types the command, the slackbot starts pipeline for the user over an api request. The slackbot should then…
Lumberjack
  • 419
  • 6
  • 12
0
votes
0 answers

Can't add an object from scene to a Visual Scripting node in Unity

I can't add an object from scene to a Visual Scripting node in Unity. While I am dragging a object from a samplescene section to a scipt graph on a GameObject node it shows an unavailable symbol and I just can't add an object to a Game Object node.…
John
  • 3
  • 3
0
votes
0 answers

InfluxDB backup command is an throwing error

On running the influx backup on my local it is not working as expected. My Environment: InfluxDB version: v2.0.9 OS: Windows 11 I have installed InfluxDB(v2.0.9) on my local machine (Windows 11) and been using it. Whenever I am running the influx…
0
votes
1 answer

"error - unhandledRejection: Error: listen EADDRINUSE: address already in use :::3000" when I use Slack Bolt for JavaScript with ngrok and Next.js

Background We are developing a Slack Bot. This time we are using Bolt for JavaScript (Node.js) provided by Slack, React, Next.js, and ngrok. Here is what each of them does. Bolt for JavaScript: I don't want to use Slack's bare-bones API, but want…
Hiroshi Nishio
  • 222
  • 4
  • 11
0
votes
1 answer

SLACK BOLT PYTHON - Although the app should be installed into this workspace, the AuthorizeResult (returned value from authorize) for it was not found

I want to build a simple Slack bolt python project so I followed this document. but when I use python_dotenv and then run my main file (app.py) I face this error: As `installation_store` or `authorize` has been used, `token` (or SLACK_BOT_TOKEN env…
0
votes
1 answer

Slack Bolt (Python) get values from modal and datepicker errors

I am creating a Slack app in Bolt framework for Python. I successfully created new command, which open new modal window with text input and datepicker. The problem is, that when trying to submit I receive error: We had some trouble connecting. Try…
ZigaK
  • 21
  • 4
0
votes
1 answer

How can I call chatPostMessage() as a response action in Bolt for Java Slack Modals?

I want to publish messages submitted on a modal view to the same channel: (https://api.slack.com/surfaces/modals/using#modal_response_url). This is how the chatPostMessage() method looks and is invoked by the /postmessage slash command: …
newbieJ
  • 17
  • 2
0
votes
1 answer

Slack API : how to update a user message from a button in ephemeral message

I exposed to you my problem with ephemeral message and update of user message A simplified user case can : when you write "hi" in a channel, that triggers an ephemeral message with a button "click", and when you click that button, it updates your…
Julien.h
  • 11
  • 2
0
votes
0 answers

Multiple custom types array in .bolt file

I have two custom types ParagraphNode and BulletListNodeLevel1 in .bolt file. How to set type to field content as an array with multiple types? type RichTextDocument { validate() { this.type == "doc" } content: (ParagraphNode |…
Andrei
  • 11
  • 1