XiaoZhang
XiaoZhang
**Is your feature request related to a problem? Please describe.** The custom subscribe function passed to a subscription resolver is required to return AsyncIterator synchronously. However, there is async business...
Currently the following code does not compile: ```rust #[derive(InputObject)] #[graphql(concrete(name = "StringNode", params(String)))] pub struct Node { value: T, children: Vec, } ``` The error I am seeing is: ```text...
### Edited In the `prepare_request` method of an extension, the request is passed in as an argument. Hence I naiively thought that the data passed in the request would be...
## Motivation Sqlite supports a `WHERE` clause on creating an index. [see docs](https://www.sqlite.org/partialindex.html) This feature is useful if only a subset of rows need to be indexed. Without it the...
## Fixes - [x] The datetime and date column types shouldn't be text, as stated by the [official docs](https://www.sqlite.org/datatype3.html), they are numeric values. ## Breaking Changes - [ ] The...
The default query services seem to use query builder in case of typeorm. This approach does not trigger the listeners and subscribers of typeorm as expected. I'd like to know...
**Is your feature request related to a problem? Please describe.** Sometimes I need to query for distinct values in a table. In SQL DBs, it is possible by using [SELECT...
## Problem Currently the `Cluster` constructor cannot take a url string as input. Therefore the user has to manually parse a url string obtained from the runtime environment into a...
### Describe the bug This addon requires `prop-types` as a direct dependency, but does not declare it in either dependencies or peerDependencies. A quick search in issues does not give...
**Is your feature request related to a problem? Please describe.** As stated in the docs, `AvionDB.init` is preferred over `open` or `create`. Thus I expect that `init` would open an...