data-api-builder icon indicating copy to clipboard operation
data-api-builder copied to clipboard

Data API builder provides modern REST and GraphQL endpoints to your Azure Databases and on-prem stores.

Results 387 data-api-builder issues
Sort by recently updated
recently updated
newest added

## Why make this change? Work for #2543 (Add Level 2 Caching). ## What is this change? First code pushed on this branch. Summary of the changes: - updated package...

To support pagination in infinite scrolling implementations, please add the total number of records in the record set in the response JSON, or include in the response header. Example JSON...

## Ensure `EntraID` is identical to `StaticWebApp` The goal is to ensure `AppService` is identical to `StaticWebApp` because we want to stop using `StaticWebApp` and start using `AppService`. https://github.com/Azure/data-api-builder/blob/ebbe98983bb02a0cd1f099dede20e691db3cd9a7/src/Config/ObjectModel/EasyAuthType.cs#L6-L10 ⚠️...

Closes #3292 ## Why make this change? It is easy to continue running an outdated version of Data API builder after a newer version has been released to NuGet. This...

This task is related to enchancement #2554 to create the custom DAB OTEL traces & counters. We are missing the OTEL implementation for GraphQL, which should be similarly done to...

## **Configuration Change** ### **Original** #### **Runtime** ```json { "runtime": { "cache": { "enabled": | (default), "ttl-seconds": } } } ``` #### **Entity** ```json { "entities": { "": { "cache":...

enhancement

At the time of writing, the JSON schema does not provide a list of possible authentication providers: https://github.com/Azure/data-api-builder/blob/0f4a3fd507cbf67b0a36b5f02649ba175e10600b/schemas/dab.draft.schema.json#L275-L299 - This means that the user needs to read the documentation (or...

## Why make this change? This pull request is related to issue 2115 (https://github.com/Azure/data-api-builder/issues/2115) that reports that it's not possible to filter entities anonymously accessible when the caller is using...

auth

Add a file sink that will allow the information from the log to be written into the file. Additionally, a new file property will be added to the configuration file...

enhancement

Try `QueryExecutor ` to optimize the SQL DB query instead of ``` using (SqlConnection connection = new(connectionString)) { try { SqlCommand command = new(query, connection); connection.Open(); SqlDataReader reader = command.ExecuteReader();...