Skip to content

Commit

Permalink
Merge pull request #22 from nubank/fix-downstream
Browse files Browse the repository at this point in the history
bug-fix-columnLineage-request
  • Loading branch information
Kess220 authored Feb 18, 2025
2 parents 36a8bda + 804ca89 commit a167453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/store/requests/columnlineage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export const getColumnLineage = async (
const encodedNamespace = encodeURIComponent(namespace)
const encodedName = encodeURIComponent(name)
const nodeId = generateNodeId(nodeType, encodedNamespace, encodedName)
const url = `${API_URL}/column-lineage?nodeId=${nodeId}&depth=${depth}&withDownstream=true`
const url = `${API_URL}/column-lineage?nodeId=${nodeId}&depth=${depth}&withDownstream=${withDownstream}`
return genericFetchWrapper(url, { method: 'GET' }, 'fetchColumnLineage')
}

0 comments on commit a167453

Please sign in to comment.