neo4jIDL
Updates your Neo4j-GraphQL schema by calling the graphql.idl procedure.
In order to update your Neo4j-GraphQL schema, you can use the neo4jIDL
export, which sends a request to Neo4j to call the graphql.idl procedure using the typeDefs
you provide.
Block strings in @cypher
directives are supported by turning them into single line statements before sending the call to graphql.idl
.
API Reference
typeDefs
(required): Your GraphQL type definitions in SDL format.driver
(required): Your Neo4j driver instance (More info here).log
(default:false
): Logs result from operation.
Example
typeDefs
Last updated