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 per the feedback here: https://github.com/Azure/data-api-builder/pull/1943#discussion_r1534644943, need to evaluate if returning back the entity name/field name leading to AuthZ failure would help users with triaging the failure.
- Similar to #1823 this issue is to handle allowing null values for scalar properties.
We need a test suite to measure the performance and have the baseline of performance for each database implementations. This will be performed as a series of steps - [...
PR https://github.com/Azure/data-api-builder/pull/2138 adds support for querying relationships that reference the same entity (self-join tables). Extend multiple create functionality to support relationships that reference itself. Some things to consider are: -...
Along the lines of #882 Wanted to keep the discussions separate so I opened a separate issue, but the question remains the same. What filter options should be provide for...
Enabling deterministic builds appends the release branch's git commit ID to the assembly metadata. So running `dab --version` outputs the below  Displaying the git commit ID is unnecessary from...
At the moment, the SWA-DAB has a cold start of around 30 secs. Collect profiling information to identify the areas where the most time is spent. We need to wait...
As references in #609 , need to add ability to format columns names of database if they are not graphQL best practice. Additionally, when formatting, we need to map back...
Cosmos DB: Mutations should be done in the same transaction as other mutations in the same request
### What happened? Multiple mutations should be part of the same transaction (assuming the items are in the same container and logical partition). That way they can be rolled back...
## Objective: To support multiple records insertion in a single table via using a single graphql mutation object. ## Example ```graphql mutation{ createMultiple_Book(items: { [ { title: "Book 1", publisher_id:...