We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
master
yes
dgraph alpha --custom_tokenizers anagram.so
word: string @index(anagram) @lang .
[ { "word@en": "airmen", "word@fr": "no match" }, { "word@en": "no match", "word@fr": "marine" } ]
{ q(func: allof(word@en, anagram, "remain")) { word: word@en } }
Actual Result - results where any language strings match are returned:
{ "data": { "q": [ { "word": "airmen" }, { "word": "no match" } ] } }
Expected Result - only nodes where strings from the specified language match are returned:
{ "data": { "q": [ { "word": "airmen" } ] } }
The text was updated successfully, but these errors were encountered:
76a5e66
No branches or pull requests
What version of Dgraph are you using?
master
Have you tried reproducing the issue with the latest release?
yes
Steps to reproduce the issue (command/config used to run Dgraph).
dgraph alpha --custom_tokenizers anagram.so
Expected behaviour and actual result.
Actual Result - results where any language strings match are returned:
Expected Result - only nodes where strings from the specified language match are returned:
The text was updated successfully, but these errors were encountered: