We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9668d8 commit 05ae639Copy full SHA for 05ae639
src/utils/parameterUtils.ts
@@ -14,7 +14,7 @@ export const extractAllParameterNames = (cypherQuery) => {
14
15
export const checkParametersNameInGlobalParameter = (parameterNames: string[], globalParameterNames: any) => {
16
for (const key of parameterNames) {
17
- if (!globalParameterNames[key] || (Array.isArray(globalParameterNames[key]) && globalParameterNames[key].length === 0)) {
+ if (!globalParameterNames[key] || (Array.isArray(globalParameterNames[key]) && globalParameterNames[key].length === 0) || globalParameterNames[key] === '') {
18
return true;
19
}
20
0 commit comments