Mark Moes

Results 41 issues of Mark Moes

Hi, First of all, thanks for writing a great library. I have used it in a lot of testing and it saved me from so many bugs. I just ran...

bug

- Include a link to the documentation section or the example https://github.com/oracle/python-cx_Oracle/blob/master/doc/src/user_guide/sql_execution.rst#fetched-number-precision - Describe the confusion Python's `decimal.Decimal` defaults to scientific notation for representing very small float values. Since the...

enhancement

**Describe the bug** We have an okteto manifest which deploys a helm chart, which installs a k8s Deployment with `initContainers:` being executed prior to the actual `containers:`. When one of...

bug
stale
keep

### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description When presented with an annotated type with multiple `Field` objects that set `json_schema_extra`, `TypeAdapter` seems to...

help wanted
bug V2
good first issue

# Problem The domain model cache contains inuseby relations that mirror the relations in the database. The problem is that these are not automatically updated for all subscriptions. Example: Subscription...

bug
triage

The `filterBy` parameter is defined in graphql resolvers as `filter_by: list[GraphqlFilter] | None = None` with the following implementation ```python @strawberry.experimental.pydantic.input(model=Filter) class GraphqlFilter: field: str = strawberry.field(description="Field to filter on")...

maintenance

We use fastapi and strawberry to utilise the power of asyncio. However, our asynchronous graphql resolvers perform synchronous database calls which block the event loop. This means that while the...

performance

# Summary The `workflows` GraphQL resolver generates many SQL queries (300+ in the SURF orchestrator) for a query like this: ```graphql query MyQuery { workflows { page { name target...

enhancement
performance

In #308 the `pydantic-forms` library was added as a dependency, and form types in orchestrator-core were removed. To remain backwards compatible we import most of `pydantic_forms.types` in `orchestrator.types`. These imports...

maintenance