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

Add capability to modify global and entity level cache settings within the CLI. cache properties currently take the form: ```json "cache": { "ttl-seconds": 12, "enabled": true } ``` - `ttl-seconds`...

cli

Currently, GraphQL response is showing DateTimeFormat for date type columns. If the value stored in the DB is `11-03-2017`, graphql will show `11-03-2017T00:00:00Z`. ![image](https://github.com/Azure/data-api-builder/assets/102276754/5ad8c1e1-fcb3-4e50-86c8-f0b2cca24954) ![image](https://github.com/Azure/data-api-builder/assets/102276754/5656a966-4664-44f4-aa3f-7305e21860b6)

enhancement
engine

To track as a separate issue, I think we should add a different `dab` command that helps to enable or disable a feature, should not be only possible through the...

enhancement
cli
config

Whenever dab add, dap update or any CLI command which does modifications to the config file is issued, the comments which are present in the config file are lost. Need...

enhancement
cli

RFC for Bulk Insert - #1783 Create the new operation type for bulk insert during graphQL schema generation

move-to-close

3.) Evaluate whether we need additional restrictions on the custom client role header (x-ms-api-role) such as max length allowed for the header value, if exceeded, we don’t even process/reject request.

auth
security

### What happened? I was running the test suite of `StoredProcedure_ParameterValueTypeResolution` and had the three `DateTime`/`DateTimeOffset` tests: https://github.com/Azure/data-api-builder/blob/main/src/Service.Tests/GraphQLBuilder/Sql/StoredProcedureBuilderTests.cs#L53-L55 The error is that it failed to parse the default value: ```...

bug
mssql pgsql mysql
graphql
testing

# Command Name: delete `delete` command will allow users to remove fields from the config file. # Proposed Usage: ## Deleting a relationship `dab delete --relationship ""` An entity can...

enhancement
cli

In order to hot reload we must monitor the config file for changes. This results in constant reads by the file watcher that we instantiate to do this task. However,...

enhancement
🔥Hot Reload