We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8982cb1 commit 6b14e92Copy full SHA for 6b14e92
src/components/OutputPanel.vue
@@ -37,6 +37,12 @@ const runCypher = async (cypher) => {
37
relationships.value = res.graph.relationships
38
rows.value = res.table.rows
39
columns.value = res.table.columns
40
+ if (!nodes.value.length && !rows.value.length) {
41
+ errorText.value = 'Query executed successfully, No matching data was found.'
42
+ tab.value = 'error'
43
+ loading.value = false
44
+ return
45
+ }
46
if (!nodes.value.length) {
47
tab.value = 'table'
48
}
0 commit comments