diff options
Diffstat (limited to 'graphgraph-fe/src/requests.js')
-rw-r--r-- | graphgraph-fe/src/requests.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphgraph-fe/src/requests.js b/graphgraph-fe/src/requests.js index a468d35..7155ea7 100644 --- a/graphgraph-fe/src/requests.js +++ b/graphgraph-fe/src/requests.js @@ -3,8 +3,8 @@ export function schemas () { return 'http://localhost:8080/schemas' } -export function nodeNames (schema) { - return `http://localhost:8080/schemas/${schema}/nodes` +export function nodeNames (schema, edgeFilter) { + return `http://localhost:8080/schemas/${schema}/nodes?edgeFilter=${edgeFilter}` } export function basicGraph (schema, node, parentHops, cousinHops, childHops, edgeFilter) { |