Islam Aliev
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....
Integrate document encryption with ACP to ensure secure and controlled access to encrypted documents in our decentralized network. This task depends on #2762
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...
currently we allow filtering of documents by related objects: ```graphql query { Author(filter: { books: {rating: {_gt: 3}} }) { name books { name } } } ``` But there...
A node that has a permission to access an encrypted document should be able to retrieve an encryption key from peer.
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}}) {...
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...
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...
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,...
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...