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
I'm using DGraph version 1.0.10
I have a schema with a predicate name: string @index(hash) @upsert .
name: string @index(hash) @upsert .
I have a node with name "uid" (a string).
"uid"
When trying to search for that node using the index name:
name
{ all(func: eq(name, "uid")) { uid } }
I get an error:
{ "errors": [ { "code": "ErrorInvalidRequest", "message": "Argument cannot be \"uid\"" } ], "data": null }
The text was updated successfully, but these errors were encountered:
@srfrog : Can you look into this?
Sorry, something went wrong.
The code explicitly forbids a value of "uid", I'm trying to figure out why. Running some tests to find out.
srfrog
No branches or pull requests
I'm using DGraph version 1.0.10
I have a schema with a predicate
name: string @index(hash) @upsert .
I have a node with name
"uid"
(a string).When trying to search for that node using the index
name
:I get an error:
The text was updated successfully, but these errors were encountered: