remove alpha deps from angel_graphql
This commit is contained in:
parent
935c06a51b
commit
33e2f86ba7
2 changed files with 4 additions and 5 deletions
|
@ -82,7 +82,6 @@ RequestHandler graphQLHttp(GraphQL graphQL,
|
||||||
return await executeMap(req.bodyAsMap);
|
return await executeMap(req.bodyAsMap);
|
||||||
}
|
}
|
||||||
} else if (req.headers.contentType?.mimeType == 'multipart/form-data') {
|
} else if (req.headers.contentType?.mimeType == 'multipart/form-data') {
|
||||||
// TODO: Support file uploads in batch requests.
|
|
||||||
var fields = await req.parseBody().then((_) => req.bodyAsMap);
|
var fields = await req.parseBody().then((_) => req.bodyAsMap);
|
||||||
var operations = fields['operations'] as String;
|
var operations = fields['operations'] as String;
|
||||||
if (operations == null) {
|
if (operations == null) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: angel_graphql
|
name: angel_graphql
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
description: The fastest + easiest way to get a GraphQL backend in Dart, using Angel.
|
description: The fastest + easiest way to get a GraphQL backend in Dart, using Angel.
|
||||||
homepage: https://github.com/angel-dart/graphql
|
homepage: https://github.com/angel-dart/graphql
|
||||||
author: Tobe O <thosakwe@gmail.com>
|
author: Tobe O <thosakwe@gmail.com>
|
||||||
|
@ -7,12 +7,12 @@ environment:
|
||||||
sdk: ">=2.0.0-dev <3.0.0"
|
sdk: ">=2.0.0-dev <3.0.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
angel_file_service: ^2.0.0
|
angel_file_service: ^2.0.0
|
||||||
angel_framework: ^2.0.0-alpha
|
angel_framework: ^2.0.0
|
||||||
angel_websocket: ^2.0.0
|
angel_websocket: ^2.0.0
|
||||||
angel_validate: ^2.0.0-alpha
|
angel_validate: ^2.0.0
|
||||||
graphql_parser: ^1.0.0
|
graphql_parser: ^1.0.0
|
||||||
graphql_schema: ^1.0.0
|
graphql_schema: ^1.0.0
|
||||||
graphql_server: ^1.0.0-beta
|
graphql_server: ^1.0.0
|
||||||
http_parser: ^3.0.0
|
http_parser: ^3.0.0
|
||||||
web_socket_channel: ^1.0.0
|
web_socket_channel: ^1.0.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
|
|
Loading…
Reference in a new issue