Mike Cann
Mike Cann
Addendum, you also get other errors if you try to make a change then refresh. ```shell yarn run v1.22.4 $ cross-env NODE_ENV=development concurrently "npm:dev:*" [dev:*cypress] [dev:*cypress] > dev:cypress [dev:*cypress] >...
Note another long discussion on this here: https://github.com/metaplex-foundation/metaplex/issues/1339
@jmar777 if you have coding experience I would suggest just using the [sdk](https://docs.metaplex.com/sdk/js/getting-started). Just smash out a quick script and call it a day: ```ts it(`creates a mint`, async ()...
I suppose, there may be an issue around when precisely things get get destroyed. The current method attaches a component to the GameObject then listens for the "OnDestroy" event from...
Agreed, this is very almost perfect, except for that point... ill have a quick play and see if I can crack it..
It can definitely be done. I had to head out but will take a look at it tomorrow or the day after if you dont work it out before hand...
Oh lol, you beat me too it, this is what I just came up with:  ``` // The main grapQL type type List = { name: string; age: number;...
Ill see if I can make mine recursive with your types..
 ``` interface User { id: string name: string email: string | null posts: Post[] } interface Post { id: string title: string description: string | null author: User }...
Oh man I must have been tired, because the above doesnt work for recursive types..