Felix Zedén Yverås
Felix Zedén Yverås
### Summary The documentation at https://postgraphile.org/postgraphile/next/config#adaptorsettings is outdated. Specifically, `adaptorSettings`, `poolConfig` and `superuserConnectionString` (those are the once I've tried, can't speak for the rest) are no longer available in `5.0.0-beta.26`....
## Description While trying out bun, I found that the log output did not look very nice. After doing some digging, I found that the main reason was that bun...
### Feature description *Note: I'm talking about "derived tables" as in "derived class" from OOP, not as in [PostgreSQL table inheritance](https://www.postgresql.org/docs/current/tutorial-inheritance.html)* I have a `Profile` type which can concretely be...
Consider a setup like this: ```sql DROP SCHEMA if EXISTS "dansdata" cascade; CREATE SCHEMA "dansdata"; CREATE TYPE dansdata.profile_type AS ENUM('individual', 'organization'); CREATE TABLE dansdata.profiles ( id UUID DEFAULT gen_random_uuid ()...
### Summary I set up a `current.sql` like this: ```sql --!include schemas/private.sql --!include schemas/public.sql --!include functions/uid.sql --!include tables/accounts.sql --!include types/jwt_token.sql --!include functions/authenticate.sql ``` I then tried running `graphile-migrate compile` and...
### Feature description I'm developing an application which is highly sweden-centric. For this reason, I use the following setup: ```sql CREATE DATABASE dansdata WITH ENCODING 'UTF8' LOCALE_PROVIDER icu ICU_LOCALE "sv-SE"...
I've taken @danielaei's initial effort in #82 and rebased it on main, followed by adding a few final pieces for full offline PWA support. This pairs nicely with the new...
When the side panel is open in a project with many tables (~15 tables + 4 areas and relationships), performance is noticeably degraded: https://github.com/user-attachments/assets/1e38ee37-9f87-456c-8c95-cad08ff5e9f0 The react devtools indicate that the...
Adding the fix I proposed in #1781 Fixes #1781 --- Additional complication: I have indications that `ACCESS_BACKGROUND_LOCATION` may be `Denied(shouldShowRationale=false)` while `ACCESS_FINE_LOCATION` is `Denied(shouldShowRationale=true)`. It then seems like `ACCESS_BACKGROUND_LOCATION` shifts...
**Description** The current implementation of `MutableMultiplePermissionsState.shouldShowRationale` does not consider cases where one or more permissions are `Denied(shouldShowRationale=false)`. This causes issues in statements such as ```kt val permissions = rememberMultiplePermissionsState(listOf(ACCESS_FINE_LOCATION, ACCESS_BACKGROUND_LOCATION))...