Although, the customer has not explicitly used APOC functions in their GraphQL queries, when GraphQL converts and executes the queries as Cypher, it may use APOC function internally to accomplish the tasks.
For example:
Below is the query run from GraphQL:
type Mutation {
createUser(name: String) @cypher(statement: """
CREATE (u:User {name: $name})
RETURN name
""")
}
The GraphQL libraries would convert the above mutation to use APOC functions and therefore the APOC function is called to accomplish the tasks.
CALL apoc.cypher.doit("
CREATE (u:User {name: $name})
RETURN name
")
Tags: cypherTags: APOCTags: graphqlTags: converstaionTags: function
Comments
0 comments
Please sign in to leave a comment.