You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to do a lookup on vertex named test, which has a name parameter that can be null and an age parameter, which is an int
I tried both
LOOKUP ON test where test.name == NULL YIELD test getting Error: SemanticError: Column type error: name
and LOOKUP ON test where test.name IS NULL YIELD test getting Error: SemanticError: Expression test.name IS NULL is not supported yet
I also have an index created on both name and age separately, so that I can do a lookup on them
But neither is working
Could anyone help? What should be the expected query to get all the nodes with the tag test, which have a name value set to NULL
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to do a lookup on vertex named
test, which has a name parameter that can be null and an age parameter, which is an intI tried both
LOOKUP ON test where test.name == NULL YIELD testgetting Error: SemanticError: Column type error: nameand
LOOKUP ON test where test.name IS NULL YIELD testgetting Error: SemanticError: Expression test.name IS NULL is not supported yetI also have an index created on both name and age separately, so that I can do a lookup on them
But neither is working
Could anyone help? What should be the expected query to get all the nodes with the tag test, which have a name value set to NULL
Here's the output of
DESCRIBE TAG testif neededBeta Was this translation helpful? Give feedback.
All reactions