From bc092653356f7c85520931d658b8d326cea256eb Mon Sep 17 00:00:00 2001 From: dajester2013 Date: Thu, 23 Jan 2014 06:02:30 -0600 Subject: [PATCH] Update ahuacatl.js vertexFilterType -> vertexFilterMethod --- js/server/modules/org/arangodb/ahuacatl.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/server/modules/org/arangodb/ahuacatl.js b/js/server/modules/org/arangodb/ahuacatl.js index e9485f75ce..07270b37b0 100644 --- a/js/server/modules/org/arangodb/ahuacatl.js +++ b/js/server/modules/org/arangodb/ahuacatl.js @@ -3765,7 +3765,7 @@ function TRAVERSAL_VERTEX_FILTER (config, vertex, path) { "use strict"; if (!MATCHES(vertex, config.filterVertexExamples)) { - return config.vertexFilterType; + return config.vertexFilterMethod; } } @@ -3841,7 +3841,7 @@ function TRAVERSAL_FUNC (func, vertexCollection, edgeCollection, startVertex, di if (params.filterVertices) { config.filter = TRAVERSAL_VERTEX_FILTER; config.filterVertexExamples = params.filterVertices; - config.vertexFilterType = params.vertexFilterType || ["prune","exclude"]; + config.vertexFilterMethod = params.vertexFilterMethod || ["prune","exclude"]; } if (params._sort) {