This is the user documentation for the Bento Backend.
The Bento Backend Framework is a server-side backend written in Java to be used with Bento based applications. The Bento Backend is meant to be used in conjunction with the Bento Frontend Framework and a Neo4j database running the GraphQL plugin.
The Bento Backend can be found in this Github Repository: Bento Backend
- Java 11 or newer installed on the server hosting the Bento Backend
- The Neo4j database containing the Bento data has been initialized and is running
The following file will need to be edited to configure the Bento Backend Code to work within a Bento based application:
src/main/resources/application.properties
- create this file by creating a copy of
src/main/resources/application_example.properties
and renaming it to use as a starting point. Line 2
- change the value ofneo4j.graphql.endpoint
to the GraphQL endpoint running on the applications Neo4j database.Line 4
- change the value ofgraphql.schema
to the path of the GraphQL schema file that will be uploaded to the database. The file path should be relative to themain
folder in the project.Line 5
- change the value ofneo4j.authorization
to the basic access authentication for your Neo4j database. (See the Basic Access Authentication section for instructions on how to generate this value).Line 9
- this value is an all lowercase Boolean value to determine if GraphQL queries will be enabled for the application.Line 10
- this value is an all lowercase Boolean value to determine if GraphQL mutations will be enabled for the application.
The basic access authentication value used in the application.properties
file is of the form Basic <base64 encoding of username:password>
. To generate this value generate the base64 encoding of the username and password as shown below and append that to the String “Basic “.
a
- Username:
neo4j
- Password:
my_password
- Authorization Value:
Basic bmVvNGo6bXlfcGFzc3dvcmQ=
echo -n "neo4j:my_password" | base64
[Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes("neo4j:my_password"))