data-api-builder
data-api-builder copied to clipboard
Data API builder provides modern REST and GraphQL endpoints to your Azure Databases and on-prem stores.
As a next step to #471, move the commands that are common to all database types to a common file. Benefits in performing this: 1. This ensures that changes have...
## What MSSQL telemetry in the `application_name` ## Format ``` dab_oss_1.2.3.4+||| ``` > [!Note] > Sections are additive. New telemetry can be added at the end, before the `|`, for...
Update `runtime.host.authentication.provider` with synonyms for future planning. > These are already accounted for in the `application_name` specification. ## Values | Current | New Synonyms |-|-| | StaticWebApp | None |...
## Why make this change? the correct way of updating the dataSourceName was already there in the initial PR here: https://github.com/Azure/data-api-builder/blob/741865371911ef0b8dc6a27d9bc9ef82470cfc16/src/Config/ObjectModel/RuntimeConfig.cs#L303 then in another refactor PR, it was incorrectly updated,...
## Why make this change? Relates to https://github.com/Azure/data-api-builder/issues/67 Relates to https://github.com/Azure/data-api-builder/issues/2323 Relates to https://github.com/Azure/data-api-builder/issues/1869 This change adds event handling for the dependencies which are set during startup, and refreshing their...
## Why make this change? This change fixes issue #2396 ## What is this change? The main changes were made to the `RuntimeConfigProvider` file to make sure that it validates...
Closes #2333 ## Overview ```json { "runtime": { "host": { "max-response-size-mb": 158 }, "pagination": { "max-page-size": 100000, "default-page-size": 100, } } } ``` ## `max-response-size-mb` [source](https://github.com/Azure/data-api-builder/blob/b7c304d84cf5d4aefd176220ddd7939edc49d759/src/Config/ObjectModel/PaginationOptions.cs#L37) *Specifies the maximum size,...
### What happened? I added the pagination section in the runtime section of the config file as following: `"pagination": { "max-page-size": -1, "default-page-size": 100 }` `dab start` works fine, but...
The task is discussed here: https://github.com/Azure/project-hawaii/issues/11#issuecomment-1055396030 To achieve this we need to: * know what collation a column is (and account for keeping this information up to date if the...
Below are the requirements for adding support for updating runtime section of the config using `dab-configure` command. | Configuration File Property Path | CLI Flag | Data Type | Nullable...