Mike Cann

Results 98 comments of Mike Cann
trafficstars

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: ![image](https://user-images.githubusercontent.com/215033/55233984-0d4f8300-5265-11e9-9ced-0c9e0c43c7a8.png) ``` // The main grapQL type type List = { name: string; age: number;...

Ill see if I can make mine recursive with your types..

![image](https://user-images.githubusercontent.com/215033/55234835-fb6edf80-5266-11e9-82c4-06fe9020a43d.png) ``` 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..