aqueduct icon indicating copy to clipboard operation
aqueduct copied to clipboard

Dart HTTP server framework for building REST APIs. Includes PostgreSQL ORM and OAuth2 provider.

Results 103 aqueduct issues
Sort by recently updated
recently updated
newest added

Up until now list query parameters were serialized in such a way: ``` url?query=[1, 2] ``` This is not the way aqueduct expects list parameters to be sent with that...

The cli command aqueduct db upgrade was not able to connect to SSL only postgres instances while running migration scripts. Issue #811 This PR changes src/cli/scripts/run_upgrade.dart -> RunUpgradeExecutable.execute to use...

My Heroku instance suddenly stopped accepting connections to the DB without an SSL certificate, and so my application stopped working. Just in case someone else bumps into this problem, here's...

With the null safety of dart landing in beta. Is there a timeline when this package will be migrated to nullsafety?

[laravel-api-query-builder](https://github.com/selahattinunlu/laravel-api-query-builder/wiki/Other-Examples) After adding such a plug-in, the front-end request data can be very convenient, and the back-end can also write a lot of code less!

I am trying to use the @ManagedTableAttributes annotation to define two properties of a table as unique, but Aqueduct is not recognizing this annotation. **Error Mensagem:** "Undefined name 'ManagedTableAttributes' used...

I have dart 2.12.0 which is stable and support sound and unsound null safety. When I run ```aqueduct serve``` I get an error which it says the script don't use...

Mirrors-Library state unclear, see: https://github.com/dart-lang/sdk/issues/44489 Seee thiis README for more details on reflectable: https://github.com/google/reflectable.dart/blob/master/reflectable/README.md

Hi, I'm wondering if it's possible to use the ORM, without the HTTP layer, and the implication with regards to connection pools and threading. Any advice here? Have a gRPC...