aboutsummaryrefslogtreecommitdiffstats
path: root/graphgraph-fe/src/requests.js
blob: 9eaf3fe22dbb159d90b0847bffe304bdd21b1ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export function schemas () {
  return 'http://localhost:8080/schemas'
}

export function nodeNames (schema) {
  return `http://localhost:8080/schemas/${schema}/nodes`
}

export function basicGraph (schema, node, parentHops, cousinHops, childHops) {
  return `http://localhost:8080/schemas/${schema}/graph/basic?node=${node}&parentHops=${parentHops}&cousinHops=${cousinHops}&childHops=${childHops}`
}

export function pathGraph (schema, fromNode, toNode) {
  return `http://localhost:8080/schemas/${schema}/graph/paths?fromNode=${fromNode}&toNode=${toNode}`
}

export function nodeProperty (schema, node) {
  return `http://localhost:8080/schemas/${schema}/nodes/${node}`
}

export function edgeProperty (schema, fromNode, toNode) {
  return `http://localhost:8080/schemas/${schema}/edges?fromNode=${fromNode}&toNode=${toNode}`
}