aboutsummaryrefslogtreecommitdiffstats
path: root/graphgraph-fe/src/requests.js
diff options
context:
space:
mode:
Diffstat (limited to 'graphgraph-fe/src/requests.js')
-rw-r--r--graphgraph-fe/src/requests.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/graphgraph-fe/src/requests.js b/graphgraph-fe/src/requests.js
index ae41f78..ec95d04 100644
--- a/graphgraph-fe/src/requests.js
+++ b/graphgraph-fe/src/requests.js
@@ -24,32 +24,32 @@ const protocol = window.location.protocol;
export function schemas () {
return `${protocol}//${host}:${port}/schemas`;
-};
+}
export function validateSchema (schema) {
return `${protocol}//${host}:${port}/schemas/${schema}/validation`;
-};
+}
export function exportSchema (schema) {
return `${protocol}//${host}:${port}/schemas/${schema}/xmiexport`;
-};
+}
export function nodeNames (schema, edgeFilter) {
return `${protocol}//${host}:${port}/schemas/${schema}/nodes?edgeFilter=${edgeFilter}`;
-};
+}
export function basicGraph (schema, node, parentHops, cousinHops, childHops, edgeFilter) {
return `${protocol}//${host}:${port}/schemas/${schema}/graph/basic?node=${node}&parentHops=${parentHops}&cousinHops=${cousinHops}&childHops=${childHops}&edgeFilter=${edgeFilter}`;
-};
+}
export function pathGraph (schema, fromNode, toNode, edgeFilter) {
return `${protocol}//${host}:${port}/schemas/${schema}/graph/paths?fromNode=${fromNode}&toNode=${toNode}&edgeFilter=${edgeFilter}`;
-};
+}
export function nodeProperty (schema, node) {
return `${protocol}//${host}:${port}/schemas/${schema}/nodes/${node}`;
-};
+}
export function edgeProperty (schema, fromNode, toNode) {
return `${protocol}//${host}:${port}/schemas/${schema}/edges?fromNode=${fromNode}&toNode=${toNode}`;
-};
+}