We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c0170d commit 715148cCopy full SHA for 715148c
1 file changed
web/src/store/requests/lineage.ts
@@ -13,6 +13,7 @@ export const getLineage = async (
13
depth: number
14
) => {
15
const nodeId = generateNodeId(nodeType, namespace, name)
16
+ // Node ID cannot be URL encoded
17
const url = `${API_URL}/lineage/?nodeId=${nodeId}&depth=${depth}`
18
return genericFetchWrapper(url, { method: 'GET' }, 'fetchLineage')
19
}
0 commit comments