Pascal Heitz
Pascal Heitz
I didn't manage to make NestJS's asset feature work. It simply didn't copy anything. So I ended up adding a script to create a symlink. ```js { "link-admin-components-assets": "ln -s...
Thanks! I had the same problem.
Indeed, the schema can be generated. I made a npm command for it: ```json { "update-api-graphql-schema": "get-graphql-schema http://myapi/graphql --json > ./src/api-graphql-schema.json" } ``` Only limitation is that one has not...
Sorry, I've moved on from this project, I have no memory of that specific issue. Hope you find a way.
## Workaround for now ```ts import { IntrospectionSchema } from 'graphql'; type TypeConfig = { // Workaround for https://github.com/marmelab/react-admin/issues/8734 // We simply omit the resolveFields that provoke the cycles. excludedFields?:...
How is this adapter supposed to determine whether requesting a given field or not? Afaik it has no way to know whether a field is a proper field (subdoc part...
Hi, any news of this? I've tried to investigate checking the source code, but it seems beyond my level of understanding.
For me too... So far the workaround we use is to force a complete page reload (`window.location = '...'`). But this is definitely ugly, as the whole page flickers and...
> > window.location > > No, God, please, no :) Try this [#20707 (comment)](https://github.com/ionic-team/ionic/issues/20707#issuecomment-598806108) It doesn't work for us. When using ``, the parent component successfully unmounts, but it also...
> Did you try [Ionic lifecycle methods](https://ionicframework.com/docs/react/lifecycle)? > Especially this one > `useIonViewDidLeave(() => { console.log('ionViewDidLeave event fired'); });` I just did. None of the 4 events in https://ionicframework.com/docs/react/lifecycle was...