Mark Moes
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...
- 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...
**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...
### 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...
# 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...
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")...
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...
# 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...
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...