pfcodes

Results 73 comments of pfcodes

What's the solution for this? I can't access any dev tools plugin. It works for a brief second then everything in `div#root` Is removed from the DOM. The console error...

I bandaged this issue with EAS by using a post-install build hook: Create `eas-build-post-install.sh`: ``` #!/bin/bash set -euo pipefail # Temporary workaround for Zendesk bitcode issue # See: https://github.com/leegeunhyeok/react-native-zendesk-messaging/issues/52#issuecomment-2461551783 ORIGINAL_DIR=$(pwd)...

> Here is a temporary solution for anyone who has the same issue, until this has been resolved: > > ```python > import strawberry > from strawberry.relay import GlobalID >...

I resolved this by simply using strawberry_django.field(annotate=...) for the property I was annotating and got rid of it from get_queryset()

Re-opening because I actually do need it to live in `get_queryset()` in order to properly access the annotation even when the field isn't queried.