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.
DAB currently requires developers to provide `'X-MS-API-ROLE' : 'admin'` as a header when making their requests. However, this is not intuitive for new users, and this is inconvenient for all...
### What happened? First I ran into that I could not have an entity named Query as that clashed with HotChocolate and was already registered. After changing Query to QueryEntity...
At the moment, the Cosmos integration tests create a new instance of the CosmosClient for performing operations (such as creating collection, inserting items, etc.) on the cosmos DB. The documentation...
Abstract Operation | SQL DB / PG | Doc API | REST | Notes -- | -- | -- | -- | -- InsertMany | INSERT | bulk(inserts(items)) |...
Abstract Operation | SQL DB / PG | Doc API | REST | Notes -- | -- | -- | -- | -- DeleteMany | DELETE | |...
Abstract Operation | SQL DB / PG | Doc API | REST | Notes -- | -- | -- | -- | -- UpsertMany | “UPSERT” | Bulk(upserts(items)) |...
### What happened? It seems that DAB does not generate enough information when an endpoint is called by Infragistics AppBuilder that requires some details to be able to use the...
### What happened? Love this project! Though I am encountering an issue. I have an Orders table which has a two columns CountryTypeId and ShippingCountryTypeId. I have a CountryTypes table...
### What happened? when you have a graphql schema that contains an Int field for example: ```gql type User { name: string age: Int } ``` and you update the...
For N:1 and 1:1 relationships where the read policy prohibits returning the result of the insertion in the related entity, we get an exception:  In the config, the policy...