aboutsummaryrefslogtreecommitdiffstats
path: root/graphgraph-fe/src/requests.js
blob: a468d35b08d170c9acb1529c7bf9798e344ba50a (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, edgeFilter) {
  return `http://localhost:8080/schemas/${schema}/graph/basic?node=${node}&parentHops=${parentHops}&cousinHops=${cousinHops}&childHops=${childHops}&edgeFilter=${edgeFilter}`
}

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

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}`
}