Mark Edwards

Results 22 issues of Mark Edwards

Will the new async ORM interface as of Django 4.1 be supported? https://docs.djangoproject.com/en/4.1/releases/4.1/#asynchronous-orm-interface

# Bug report I'm trying to implement generic typing on custom fields, and I'm not having much luck. Any idea if there is a way to make this work? ##...

bug

# Bug report ## What's wrong The typing of a ManyToMany relation's `add()` method incorrectly assumes that model ids are int, but they can be other types, such as UUID....

bug

**Intended outcome:** 1. Configure a component to use `useQuery` with `fetchPolicy: "network-only"` or `fetchPolicy: "cache-and-network"`, and `nextFetchPolicy: "cache-first"`. 2. Mount the component, query is made. 3. Unmount the component. 4....

:rose: has-reproduction
⚛️ React-related

There is an equality check in https://github.com/django-guardian/django-guardian/blob/devel/guardian/shortcuts.py#L533 which fails when `GUARDIAN_GET_CONTENT_TYPE` is set. The check in question is: ``` if ctype.model_class() != queryset.model ``` This works in a standard case,...

**Describe the bug** Pydantic's type-checking seems to be broken when using the `Document` base class. No type errors are raised when violating field types. **To Reproduce** ```python class Foo(Document): foo:...

typing bug

**Describe the bug** Using any operator that subclasses `BaseFindComparisonOperator` results in a type error when `no-untyped-call` is enabled. **To Reproduce** ```python class Foo(Document): foo: str | None = None Foo.find(NE(Foo.foo,...

typing bug

The FAQ states: > In some cases like user logout we want to wipe out application cache. To do it effectively with Apollo Cache Persist please use client.clearStore() method that...

Its currently not possible to address many of [GraphiQL's parameters](https://graphiql-test.netlify.app/typedoc/modules/graphiql.html#graphiql-2) in `ExplorerGraphiQL`: Is this planned? I'm willing to do a diff.

help wanted