Rafał Dzięgielewski

Results 242 comments of Rafał Dzięgielewski

> Prisma adapter could be modified to include implicit relations That would only work if: 1. We can access implicit relations metadata via DMMF 2. Virtual/Implicit relations in Prisma have...

@sourabh1983 do you also use mongoose?

How do you get `participatingTeams`? AdminJS uses a flat data model so if `participatingTeams` is structured as a nested json it won't work. Your response should look like: ``` //...

I don't think there's an easy way currently. We plan to make changes to `new` action so that it allows you to fetch some data from the backend, but currently...

In non-mongoose adapters we're unable to retrieve JSON objects and determine their types automatically. You would have to modify this property's type in your resource options to be either: -...

The example app will be updated soon, we also want to update & document `@adminjs/bundler`'s usage with ComponentLoader. That said, deploying to a serverless environment might not be the best...

Do you have a custom component there?

Never had to use Tailwind or import any css files but you might also need a scss transpiler/tailwind plugin for babel

``` locale: { language: 'en', translations: { resources: { Order: { // or whatever the resource id is properties: { 'cart.totalQty': 'Total Quantity' } } } } } ``` This...