Jonathan Gamble
Jonathan Gamble
https://discuss.dgraph.io/t/how-to-achieve-field-level-auth-at-the-moment/13069 https://discuss.dgraph.io/t/using-auth-on-individual-fields/7208 Currently there is no way to secure a field differently than the entire type. I have seen around 5 people leave DGraph due to this missing feature alone....
The final missing Auth Rule, is an Auth Rule based on External Types. This is probably the easiest to fix. Let's say I have a post: ```graphql type Post @auth(...)...
Currently the Lambda Web Hooks worth AFTER the mutation has already been completed: https://dgraph.io/docs/graphql/lambda/webhook/ https://discuss.dgraph.io/t/feature-request-lambda-pre-hooks/15626 I don't feel like typing out the myriad of things this would solve. An after...
https://discuss.dgraph.io/t/rfc-nested-filters-in-graphql/13560 This is probably the number one requested feature, but not necessarily the most important. Nested filters are a complicated matter, but they seem to solve all the cases where...
https://discuss.dgraph.io/t/feature-request-cascade-delete-deep-mutations-by-reference-directive/14658 # cascade delete If I delete a user, I may want to delete all the user's posts. If I delete a post, I may want to delete all the...
Currently, subscriptions are based on [polling](https://github.com/dgraph-io/dgraph/blob/master/graphql/subscription/poller.go). It would be nice if Dgraph worked out of the box with [Change Data Capture](https://dgraph.io/docs/master/enterprise-features/change-data-capture/) instead of polling, as it would be less stringent...
https://discuss.dgraph.io/t/composite-id-fields/13337 https://discuss.dgraph.io/t/support-multiple-unique-fields-in-dgraph-graphql/8512/15 There are 1000 links in the DGraph forum for this, but basically: ```graphql type Bar @unique(user, date) { user: String! date: String! } ``` We need this SQL...
https://github.com/dgraph-io/dgraph/issues/3211#issuecomment-505932373 https://discuss.dgraph.io/t/fuzzy-full-text-search/16224 DGraph will need a way to do Fuzzy Full Text searching. Currently, this only works on words with levenshtein distance algorithm, but not full-text fuzzy search capabilities. J
Dgraph Allows you to update many items at once, ONLY if you update with the same values. This is a problem for simple updates. Let's say I want to update...
Related to [this issue](https://github.com/dgraph-io/dgraph/issues/8176) for reference. # Keys **Composite Key** - has more than one attribute **Compound Key** - a specific composite key where both attributes are also foreign keys...