Package org.neo4j.procedure


package org.neo4j.procedure
  • Class
    Description
    This marks a field in a class with Procedure methods as part of the context the procedure is invoked in.
    A procedure can optionally be annotated with a @Description("a description").
    The procedure mode affects how the procedure will execute, and which capabilities it requires.
    This defines the name of an input argument for a procedure.
    Declares a method as a Procedure, meaning the method can be called from the cypher query language.
    Declares a method as an aggregation function, meaning the method can be called from the cypher query language.
    Declares a method as the result method of an aggregation.
    Declares a method as the update method of an aggregation.
    Declares a method as a Function, meaning the method can be called from the cypher query language.