Islam Aliev
Islam Aliev
When doing a code review sometimes it's necessary to add several not related comments to a single line of code. Each of those should be resolvable separately. At the moment...
Hey guys, thanks for your great work. Your extension helps very much. What I would really like to have in the extension is the ability to synchronise the current test...
At the moment with requests like: ```graphql query { Device(filter: { owner: {name: {_eq: "Keenan"}} }) { model } } ``` and schema: ```graphql type User { name: String @index...
## Relevant issue(s) Resolves # ## Description (*replace*) Include a summary of the changes. List the issue(s) it solves in the section above, and create one if none exists. Include...
## Relevant issue(s) Resolves #2508 ## Description Replaces go implementation of connor package with rust implementation. All the input into connor package is serialized into JSON format understandable by rust...
As a part of endeavour of transitioning to Rust we want to take a sample Go package, convert it to Rust and replace it's usage in Go code. This is...
`NormalValue` can be even more strongly typed if it was bound to a `FieldKind`. The work is already in progress https://github.com/islamaliev/defradb/tree/feat/non-nillable-types This task potentially might might (or have to) solve...
It would be nice to have a way of imposing some constrains on certain doc values for all docs in a collection. For example, if we want to restrict user's...
I have this schemas: ```graphql type Companies { employees: [Users] name: String } type Users { company: Companies name: String } ``` When I query `Users`: ```graphql query { Users...
At the moment when running `defradb client collection --name User create '{...}'` nothing is returned and in order to figure our the docID of the document I run `defradb client...