Jeff Barnes
Jeff Barnes
I had this requirement pop up in a query I was designing today. (need to check event.start_date = event.end_date). Searching around seems like some of the graphql libraries are solving...
FWIW, I got around this problem by using the new makeAddPgTableConditionPlugin to add a new custom filter clause that included my comparison operation. Edit, here's some code for reference: ```...
+1 for this.
Took at quick look at the merge, but the gotoDetails() and gotoReference() changes make a lot of conflicts.
I was looking into this too, seems like ng-admin/src/javascripts/ng-admin/Main/view/menuBar.html has it hard-coded with the #hash
I did it like this: ``` typescript const archive = archiver('zip') archive.pipe(res) for (const version of document.versions) { const file = await objectStore.readStream('files', version.file_id) if (file != null) { await...
Hello to anyone looking at this in 2022. This is how I attacked this on Angular 14: ```ts import * as mdi from './mdi-icons' import { camelCase } from 'lodash-es'...
This issue is still valid. There is no way to add flex-layout directives to the app host component. Edit: found #76 which is same issue.
The 'from' date is included in the result, this is just matching the moment-recur api.
With moment plugins it is important that all the plugins are using the same version of moment. Check this using `yarn list moment` If it is resolving to multiple copies...