Results 74 issues of Islam Aliev

Implement functionality to update document encryption status and keys. This includes enabling encryption for previously unencrypted documents or fields and replacing existing encryption keys starting from a new DAG block....

security

Integrate document encryption with ACP to ensure secure and controlled access to encrypted documents in our decentralized network. This task depends on #2762

feature
security
acp

We currently employ a method for detecting test mode execution that may not be optimal or align with conventional practices: ```go func init() { arg := os.Args[0] // If the...

area/testing
code quality

currently we allow filtering of documents by related objects: ```graphql query { Author(filter: { books: {rating: {_gt: 3}} }) { name books { name } } } ``` But there...

area/query

A node that has a permission to access an encrypted document should be able to retrieve an encryption key from peer.

area/network
security

At the moment it is possible to filter secondary objects by certain criteria in primary objects. Like so: ```graphql query { Author(filter: {published: {rating: {_gt: 4.8}}, age: {_gt: 63}}) {...

area/query
priority/high

upon saving a document to a collection for every relation 1-to-1 field we run a full scan to find out if there is any other document that refers to the...

perf
area/collections

upon saving a document to a collection for every relation 1-to-1 field we run a full scan to find out if there is any other document that refers to the...

area/query
area/collections

At the moment upon query we check if filtered field is indexed and if so we just take the first index for fetching. But a field might have several indexes,...

area/query
perf

We want to enable client to change different ways of providing random values. Current approach generates uniformly distributed values but it doesn't provide collision-free guarantees. One of the option is...

area/testing