MCPcopy Create free account

hub / github.com/codemix/graph / functions

Functions1,533 in github.com/codemix/graph

↓ 2 callersFunctionbuildCondition
(parts: Condition[], type: string)
packages/graph/src/astToSteps.ts:1867
↓ 2 callersMethodcheckAllUniqueConstraints
* Check all unique constraints for an element's properties. * @param label The element label. * @param properties The properties to check. *
packages/graph/src/indexes/IndexManager.ts:237
↓ 2 callersMethodcomputeAggregates
( paths: readonly TraversalPath<any, any, any>[], items: readonly WithItemConfig[], context?: Quer
packages/graph/src/Steps.ts:6899
↓ 2 callersFunctioncontainsVowel
* Check if stem contains a vowel
packages/text-search/src/stemmer.ts:51
↓ 2 callersFunctionconvertCallClause
* Convert a CALL clause into a CallStep.
packages/graph/src/astToSteps.ts:995
↓ 2 callersFunctionconvertDeleteClause
* Convert a DELETE clause into a DeleteStep.
packages/graph/src/astToSteps.ts:717
↓ 2 callersFunctionconvertForeachClause
* Convert a FOREACH clause into a ForeachStep.
packages/graph/src/astToSteps.ts:1066
↓ 2 callersFunctionconvertMultiPattern
* Convert a MultiPattern (comma-separated patterns like MATCH (a), (b)) into steps. * Creates a Cartesian product of all matching combinations. * *
packages/graph/src/astToSteps.ts:1530
↓ 2 callersFunctionconvertRemoveClause
* Convert a REMOVE clause into a RemoveStep.
packages/graph/src/astToSteps.ts:727
↓ 2 callersFunctionconvertSetClause
* Convert a SET clause into a SetStep. * Supports three types of assignments: * 1. Individual property: n.prop = value * 2. Replace all properties:
packages/graph/src/astToSteps.ts:527
↓ 2 callersFunctionconvertSetMapValue
* Convert a SET map value (property map or parameter reference).
packages/graph/src/astToSteps.ts:561
↓ 2 callersFunctionconvertUnwindClause
* Convert an UNWIND clause into an UnwindStep.
packages/graph/src/astToSteps.ts:907
↓ 2 callersFunctionconvertWithClause
* Convert a WITH clause into a WithStep.
packages/graph/src/astToSteps.ts:798
↓ 2 callersFunctioncreateLazyPropertyDictionary
( schema: TSchema, map: Y.Map<unknown>, )
packages/y-graph-storage/src/LazyPropertyDictionary.ts:11
↓ 2 callersFunctioncreateManufacturingGraph
()
packages/graph/src/test/createManufacturingGraph.ts:18
↓ 2 callersFunctioncreateStepsFromJSON
(input: readonly StepJSON[])
packages/graph/src/Steps.ts:7489
↓ 2 callersMethoddivide
* Divide this duration by a scalar.
packages/graph/src/TemporalTypes.ts:1383
↓ 2 callersFunctiondurationInDays
(start: TemporalValue, end: TemporalValue)
packages/graph/src/TemporalTypes.ts:1795
↓ 2 callersFunctiondurationInMonths
(start: TemporalValue, end: TemporalValue)
packages/graph/src/TemporalTypes.ts:1767
↓ 2 callersFunctiondurationInSeconds
(start: TemporalValue, end: TemporalValue)
packages/graph/src/TemporalTypes.ts:1814
↓ 2 callersFunctionendsWithCVC
* Check if stem ends with consonant-vowel-consonant pattern * where the final consonant is not w, x, or y
packages/text-search/src/stemmer.ts:70
↓ 2 callersFunctionevaluateQuantifier
* Evaluate a quantifier expression over a list.
packages/graph/src/Steps.ts:1995
↓ 2 callersFunctionevaluateReduce
* Evaluate a reduce expression over a list. * Folds the list into a single value using an accumulator.
packages/graph/src/Steps.ts:2070
↓ 2 callersFunctionextractPatternVariables
* Extract variable names bound by a pattern for OPTIONAL MATCH null bindings. * When skipAnchor is true, skips the first node if it's an anchor patte
packages/graph/src/astToSteps.ts:2952
↓ 2 callersMethodget
* Look up a procedure by name (case-insensitive).
packages/graph/src/ProcedureRegistry.ts:100
↓ 2 callersMethodgetAll
* Get all the node in the path by label. * @param label The label to get the nodes by.
packages/graph/src/Traversals.ts:233
↓ 2 callersMethodgetBTreeIndex
(label: string, property: string)
packages/graph/src/indexes/IndexManager.ts:289
↓ 2 callersMethodgetEdgeProperties
(label: string, uuid: string, map: Y.Map<unknown>)
packages/y-graph-storage/src/YGraphStorage.ts:69
↓ 2 callersMethodgetFullTextIndex
(label: string, property: string)
packages/graph/src/indexes/IndexManager.ts:294
↓ 2 callersMethodgetNeighbors
* Get neighboring vertices based on direction.
packages/graph/src/Steps.ts:5302
↓ 2 callersMethodgetVertexProperties
(label: string, uuid: string, map: Y.Map<unknown>)
packages/y-graph-storage/src/YGraphStorage.ts:61
↓ 2 callersFunctionhasMeasureEqual1
* Check if the stem has measure = 1
packages/text-search/src/stemmer.ts:37
↓ 2 callersMethodhasParam
* Check if a parameter exists. * @param name The parameter name (without $ prefix)
packages/graph/src/QueryContext.ts:97
↓ 2 callersMethodisBuilt
* Check if an index has been built.
packages/graph/src/indexes/IndexManager.ts:324
↓ 2 callersFunctionisBuiltinFunction
(name: string)
packages/graph/src/FunctionRegistry.ts:1682
↓ 2 callersMethodisNull
* Filter edges where the specified property is null or undefined. * @param propertyName The name of the property to check.
packages/graph/src/Traversals.ts:2017
↓ 2 callersFunctionjsonClone
* Serialize a value to JSON and back. Alias for JSON.parse(JSON.stringify(value)). * Used where we explicitly want JSON serialization behavior.
packages/graph/src/AsyncGraph.ts:11
↓ 2 callersMethodlength
* Return the number of edges/relationships in this path. * Mirrors Cypher's `length(path)`.
packages/graph/src/Traversals.ts:187
↓ 2 callersMethodlookupGreaterThanOrEqual
* Find all elements with values greater than or equal to the given value. * O(log n + k) where k is the number of matches. * * @param value T
packages/graph/src/indexes/BTreeIndex.ts:246
↓ 2 callersMethodlookupLessThanOrEqual
* Find all elements with values less than or equal to the given value. * O(log n + k) where k is the number of matches. * * @param value The
packages/graph/src/indexes/BTreeIndex.ts:190
↓ 2 callersMethodlookupMany
* Look up element IDs matching any of the given values. * O(n) where n is the number of values. * * @param values Array of values to look up.
packages/graph/src/indexes/HashIndex.ts:86
↓ 2 callersFunctionmakeIntegerType
* Creates a schema that parses string numbers to integers.
packages/graph/src/test/standardSchema.test.ts:57
↓ 2 callersFunctionmakeType
(_defaultValue: T)
packages/graph/src/test/date-temporal.test.ts:21
↓ 2 callersFunctionmakeType
(_defaultValue: T)
packages/graph/src/test/range-reverse.test.ts:22
↓ 2 callersFunctionmakeType
(_defaultValue: T)
packages/graph/src/test/numericLiterals.test.ts:11
↓ 2 callersFunctionmakeType
(_defaultValue: T)
packages/graph/src/test/duration-temporal.test.ts:27
↓ 2 callersFunctionmatchWithDetails
* Internal function to perform matching with full details.
packages/text-search/src/matcher.ts:318
↓ 2 callersMethodminus
* Subtract another duration from this duration.
packages/graph/src/TemporalTypes.ts:1359
↓ 2 callersMethodonElementAdd
* Called when a new element is added to the graph. * Updates all built indexes for this element. * Note: This does NOT check unique constraints
packages/graph/src/indexes/IndexManager.ts:395
↓ 2 callersMethodonElementRemove
* Called when an element is removed from the graph. * Updates all built indexes for this element.
packages/graph/src/indexes/IndexManager.ts:416
↓ 2 callersFunctionpeg$buildStructuredError
(expected, found, location)
packages/graph/src/grammar.js:2496
↓ 2 callersFunctionpeg$computePosDetails
(pos)
packages/graph/src/grammar.js:2420
↓ 2 callersFunctionpeg$parseALLSHORTESTPATHS
()
packages/graph/src/grammar.js:15286
↓ 2 callersFunctionpeg$parseASC
()
packages/graph/src/grammar.js:14583
↓ 2 callersFunctionpeg$parseASCENDING
()
packages/graph/src/grammar.js:14620
↓ 2 callersFunctionpeg$parseBacktickChar
()
packages/graph/src/grammar.js:17467
↓ 2 callersFunctionpeg$parseBooleanLiteral
()
packages/graph/src/grammar.js:17321
↓ 2 callersFunctionpeg$parseCaseElseClause
()
packages/graph/src/grammar.js:11331
↓ 2 callersFunctionpeg$parseComment
()
packages/graph/src/grammar.js:18023
↓ 2 callersFunctionpeg$parseCreateChainNode
()
packages/graph/src/grammar.js:3969
↓ 2 callersFunctionpeg$parseCreateEdgeAndNode
()
packages/graph/src/grammar.js:3946
↓ 2 callersFunctionpeg$parseDESC
()
packages/graph/src/grammar.js:14657
↓ 2 callersFunctionpeg$parseDESCENDING
()
packages/graph/src/grammar.js:14694
↓ 2 callersFunctionpeg$parseDoubleQuoteChar
()
packages/graph/src/grammar.js:16573
↓ 2 callersFunctionpeg$parseELSE
()
packages/graph/src/grammar.js:15989
↓ 2 callersFunctionpeg$parseEscapeSequence
()
packages/graph/src/grammar.js:16705
↓ 2 callersFunctionpeg$parseFIRST
()
packages/graph/src/grammar.js:14768
↓ 2 callersFunctionpeg$parseGROUP
()
packages/graph/src/grammar.js:14546
↓ 2 callersFunctionpeg$parseLABELS
()
packages/graph/src/grammar.js:14398
↓ 2 callersFunctionpeg$parseLAST
()
packages/graph/src/grammar.js:14805
↓ 2 callersFunctionpeg$parseLIMIT
()
packages/graph/src/grammar.js:14916
↓ 2 callersFunctionpeg$parseListComprehensionProjection
()
packages/graph/src/grammar.js:10892
↓ 2 callersFunctionpeg$parseListComprehensionWhere
()
packages/graph/src/grammar.js:10869
↓ 2 callersFunctionpeg$parseListLiteral
()
packages/graph/src/grammar.js:16376
↓ 2 callersFunctionpeg$parseNestedPropertyMap
()
packages/graph/src/grammar.js:7189
↓ 2 callersFunctionpeg$parseOFFSET
()
packages/graph/src/grammar.js:14879
↓ 2 callersFunctionpeg$parseORDER
()
packages/graph/src/grammar.js:14472
↓ 2 callersFunctionpeg$parsePERCENTILECONT
()
packages/graph/src/grammar.js:14361
↓ 2 callersFunctionpeg$parsePERCENTILEDISC
()
packages/graph/src/grammar.js:14324
↓ 2 callersFunctionpeg$parseParenthesizedPathPattern
()
packages/graph/src/grammar.js:6331
↓ 2 callersFunctionpeg$parsePatternElementTail
()
packages/graph/src/grammar.js:6278
↓ 2 callersFunctionpeg$parsePostfixOperator
()
packages/graph/src/grammar.js:9713
↓ 2 callersFunctionpeg$parseQuantifierExpression
()
packages/graph/src/grammar.js:9975
↓ 2 callersFunctionpeg$parseQuerySegment
()
packages/graph/src/grammar.js:2819
↓ 2 callersFunctionpeg$parseREDUCE
()
packages/graph/src/grammar.js:16248
↓ 2 callersFunctionpeg$parseReturnClause
()
packages/graph/src/grammar.js:11883
↓ 2 callersFunctionpeg$parseSHORTESTPATH
()
packages/graph/src/grammar.js:15249
↓ 2 callersFunctionpeg$parseSKIP
()
packages/graph/src/grammar.js:14842
↓ 2 callersFunctionpeg$parseSTDEV
()
packages/graph/src/grammar.js:14250
↓ 2 callersFunctionpeg$parseSTDEVP
()
packages/graph/src/grammar.js:14287
↓ 2 callersFunctionpeg$parseSearchedCaseAlternative
()
packages/graph/src/grammar.js:11293
↓ 2 callersFunctionpeg$parseSetMapValue
()
packages/graph/src/grammar.js:5667
↓ 2 callersFunctionpeg$parseShortestPathFunction
()
packages/graph/src/grammar.js:6013
↓ 2 callersFunctionpeg$parseSimpleCaseAlternative
()
packages/graph/src/grammar.js:11255
↓ 2 callersFunctionpeg$parseSingleQuoteChar
()
packages/graph/src/grammar.js:16639
↓ 2 callersFunctionpeg$parseSliceIndex
()
packages/graph/src/grammar.js:9690
↓ 2 callersFunctionpeg$parseTYPE
()
packages/graph/src/grammar.js:14435
↓ 2 callersFunctionpeg$parseUnaryExpression
()
packages/graph/src/grammar.js:9636
↓ 2 callersFunctionpeg$parseUnionKeyword
()
packages/graph/src/grammar.js:2715
↓ 2 callersFunctionpeg$parseWhereClause
()
packages/graph/src/grammar.js:8106
← previousnext →401–500 of 1,533, ranked by callers