Neo4j

This handler allows you to use the GraphQL schema created by @neo4j/graphql.
To get started, install the handler library:
yarn add @graphql-mesh/neo4jNow, you can use it directly in your Mesh config file:
sources:
- name: Neo4j
handler:
neo4j:
url: neo4j://localhost
username: neo4j
password: MY_PASSWORDConfig API Reference
url(type:String, required) - URL for the Neo4j Instance e.g. neo4j://localhostusername(type:String, required) - Username for basic authenticationpassword(type:String, required) - Password for basic authenticationalwaysIncludeRelationships(type:Boolean) - Specifies whether relationships should always be included in the type definitions as relationship types, even if the relationships do not have properties.database(type:String) - Specifies database nametypeDefs(type:String) - Provide GraphQL Type Definitions instead of inferring
Last updated on July 27, 2022