Skip to content

filter with eq list argument behaves differently without index #5767

@danielmai

Description

@danielmai

What version of Dgraph are you using?

v20.03.3

Have you tried reproducing the issue with the latest release?

Yes

What is the hardware spec (RAM, OS)?

Ubuntu Linux, Docker

Steps to reproduce the issue (command/config used to run Dgraph).

  1. Run Dgraph cluster

  2. Set the following schema with a string predicate:

    curl 'localhost:8080/alter' \
         -d 'name: string .'
    
  3. Run the following mutation

    curl 'localhost:8080/mutate?commitNow=true' \
         -H "Content-Type: application/json" \
         -d '{"set":[{"uid":"_:root","connects":[{"name": "A"},{"name":"B"}]}]}'
    
  4. Run the following query

    curl 'localhost:8080/query' \
         -H "Content-Type: application/graphql+-" \
         -d '
    {
      q(func: has(connects)) {
        connects @filter(eq(name, ["A", "B"])) {
          name
        }
      }
    }'
    

Expected behaviour and actual result.

The actual query result is:

{
  "data": {
    "q": [
      {
        "connects": [
          {
            "name": "B"
          }
        ]
      }
    ]
  }
}

The expected query result is that eq(name, ["A", "B"]) in the filter returns back both nodes A and B in the response.

If I set an index on the name predicate, then the filter works as expected.

Alter schema:

name: string @index(hash) .

Query response:

{
  "data": {
    "q": [
      {
        "connects": [
          {
            "name": "A"
          },
          {
            "name": "B"
          }
        ]
      }
    ]
  }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    area/querylangIssues related to the query language specification and implementation.kind/enhancementSomething could be better.status/acceptedWe accept to investigate/work on it.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions