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.
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`...
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`.  
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...
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...
RFC for Bulk Insert - #1783 Create the new operation type for bulk insert during graphQL schema generation
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.
### 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: ```...
# 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...
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,...