Tycho Bokdam
Tycho Bokdam
This looks about right, usually what I tend to do is something like this: ```ts return ActivitiesViewConnection.createFromPromise( (q) => this.customQueryService.customQuery(q), query, (q) => this.customQueryService.customCount(q), ); ``` That way not all...
Interesting, I think a union type could be supported but then you would need to overwrite a lot of the service etc. > Additionally, I looked into defining my types...
If I understand it correctly, you could just follow [Custom Endpoints](https://tripss.github.io/nestjs-query/docs/graphql/resolvers/#custom-endpoints) from the docs? There is explained on how to create the return type with page info etc, you are...
@FrozenPandaz upgraded to the latest version with `nx migrate latest` (from 16.5.0), than ran `NX_VERBOSE_LOGGING=true nx migrate --run-migrations` ``` > NX Failed to parse yarn lockfile Please open an issue...
How would you propose to fit this inside the `Query`?
Interesting @ValentinVignal, could you make a PR?
@soumyamahunt lets close the issue until other ppl also have it and switching to ubuntu aint a option. Thanks for the reporting and investigating.
If I would have to make a quess I think the filter is defined wrong and should look more like this: ``` { contracts: { type: { in: ["part time",...
Finally got it locally to, after some debugging it throws this error ``` error { code: 400, message: 'Cannot insert legacy ACL for an object when uniform bucket-level access is...
My proposed solution: ```ts const streamFileUpload = () => new Promise((resolve, reject) => { file.stream.pipe(bucketFile.createWriteStream(fileAttributes)) .on('error', (error) => { reject(error) }) .on('finish', () => { // The file upload is...