Marcel Overdijk

Results 207 comments of Marcel Overdijk

Awesome, is there any timeline to share when this expected to be released?

@mohawk2 do you have a link to the blog post? I'm interested to read it.

Thanks @mohawk2 As @phalt already mentioned himself both data collections are very useful for for teaching programming and API interaction. That's exactly what I want to use the SWAPI data...

PS: I scraped the date from https://swapi.co/ using https://github.com/swapi4j/swapi4j-client. I created sql statements from the scraped data and stored them here: https://github.com/marceloverdijk/swapi-labs/tree/master/swapi-labs-data/src/main/resources Might be useful for you..

If needed I could create a small isolated Spring Boot sample project. Just let me know..

At least I can do the following workaround by resolving the relation manually: ``` objectType({ name: Constructor.$name, definition(t) { t.field(Constructor.id) t.field(Constructor.name) // https://github.com/prisma/nexus-prisma/issues/201 // t.field(Constructor.country) t.field({ ...Constructor.country, async resolve(parent, _args,...

Maybe quite nasty, but this seems to works as well: ``` const prisma = global.prisma || new PrismaClient() // @ts-ignore prisma.constructor = prisma.Constructor ```

Instead of ``` MessagingItem item = .. MessagingParticipant sender = item.getSender(); IdMessageRecipient recipient = new IdMessageRecipient(sender.getId()); ``` I could do something like: ``` MessagingItem item = .. MessagingParticipant sender =...

No worries if you don't want to add it. It would be my personal preference, but I also see the reasoning for not adding it.