-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
bugSomething isn't workingSomething isn't working
Description
When using any operators in QueryBuilder, Neogma outputs the following error:
NeogmaConstraintError: The only operator which is supported for object mode is "eq"
I noticed that QueryBuilder uses exclusively getStatement('object')
to parse the where parameters, which causes the error.
nodeParts.push(inner.getStatement('object')); |
Is this just a limitation of QueryBuilder or am I missing something?
P.S. Here's an example of my attempt at using operators:
.match({
related: [
// ...
{
// ...
where: { value: { [Op.contains]: 'foo' } },
}
],
})
// ...
themetalfleece
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working