Commit Graph

77 Commits

Author SHA1 Message Date
Sunli
dded8d6c7f 2.0.0 2020-10-13 10:31:19 +08:00
Sunli
467a4d8140 2.0.0-alpha.30 2020-10-12 21:10:27 +08:00
Sunli
b302259121 2.0.0-alpha.29 2020-10-12 15:13:37 +08:00
Sunli
a18ee76cdb 2.0.0-alpha.28 2020-10-12 11:08:54 +08:00
Sunli
7aa26c3484 2.0.0-alpha.27 2020-10-12 07:54:01 +08:00
Sunli
34b6531576 2.0.0-alpha.26 2020-10-11 21:36:28 +08:00
Sunli
ffb8120107 2.0.0-alpha.25 2020-10-11 20:42:23 +08:00
Sunli
935cedc057 2.0.0-alpha.24 2020-10-10 16:30:42 +08:00
Sunli
87ba51fdd0 Some improvements. 2020-10-10 16:28:07 +08:00
Sunli
3581008e71 Merge pull request #294 from qwtsc/test_dev
Add actix-web test
2020-10-02 22:28:38 +08:00
qwtsc
9d87df3aed Add actix-web test 2020-10-02 21:17:47 +08:00
Sunli
150de7bfdd 2.0.0-alpha.23 2020-10-02 15:00:59 +08:00
Sunli
9d0b0fcf00 2.0.0-alpha.22 2020-10-01 11:26:58 +08:00
Sunli
97f0b0d419 Merge branch 'master' into rework-errors 2020-10-01 09:07:19 +08:00
Koxiaet
768b666acd Merge master 2020-09-30 18:24:24 +01:00
Sunli
7ca82d9a9f Update Cargo.toml 2020-09-30 08:00:48 +08:00
Sunli
35f886a7f8 Improve trait for GraphQL types. 2020-09-30 07:45:48 +08:00
Koxiaet
50009b66ce Rework errors
This completely overhauls the error system used in async-graphql.
- `Error` has been renamed to `ServerError` and `FieldError` has been
renamed to just `Error`. This is because `FieldError` is by far the most
common error that users will have to use so it makes sense to use the
most obvious error name. Also, the current name didn't make sense as it
was used for things other than field errors, such as the data callback
for websockets.
- `ServerError` has been made completely opaque. Before it was an enum
of all the possible errors, but now it just contains an error message,
the locations, the path and extensions. It is a shame that we lose
information, it makes more sense as _conceptually_ GraphQL does not
provide that information. It also frees us to change the internals of
async-graphql a lot more.
- The path of errors is no longer an opaque JSON value but a regular
type, `Vec<PathSegment>`. The type duplication of `PathSegment` and
`QueryPathSegment` is unfortunate, I plan to work on this in the future.
- Now that `ServerError` is opaque, `RuleError` has been removed from
the public API, making it simpler.
- Additionally `QueryError` has been completely removed. Instead the
error messages are constructed ad-hoc; I took care to never repeat an
error message.
- Instead of constructing field-not-found errors inside the
implementations of field resolvers they now return `Option`s, where a
`None` value is representative of the field not being found.
- As an unfortunate consequence of the last change, self-referential
types based on the output of a subscription resolver can no longer be
created. This does not mean anything for users, but causes lifetime
issues in the implementation of merged objects. I fixed it with a bit of
a hack, but this'll have to be looked into further.
- `InputValueError` now has a generic parameter - it's kind of weird but
it's necessary for ergonomics. It also improves error messages.
- The `ErrorExtensions` trait has been removed. I didn't think the
`extend` method was necessary since `From` impls exist. But the
ergonomics are still there with a new trait `ExtendError`, which
is implemented for both errors and results.
- `Response` now supports serializing multiple errors. This allows for
nice things like having multiple validation errors not be awkwardly
shoved into a single error.
- When an error occurs in execution, data is sent as `null`. This is
slightly more compliant with the spec but the algorithm described in
<https://spec.graphql.org/June2018/#sec-Errors-and-Non-Nullability> has
yet to be implemented.
2020-09-29 20:06:44 +01:00
Sunli
c3d24f5a8f Keep pin-project-lite dependent on async-graphql-tide at v0.1.8. 2020-09-29 17:04:27 +08:00
Sunli
9c5f53e79a 2.0.0-alpha.21 2020-09-29 16:40:35 +08:00
Sunli
e60864a18d Rework async-graphql-derive. #288 2020-09-29 16:06:10 +08:00
Sunli
37a803c3d9 2.0.0-alpha.20 2020-09-28 11:33:58 +08:00
Sunli
edf1420a44 2.0.0-alpha.19 2020-09-27 10:22:13 +08:00
Sunli
5971b44105 2.0.0-alpha.18 2020-09-26 12:36:56 +08:00
Sunli
6d5a12ad54 2.0.0-alpha.17 2020-09-26 09:38:07 +08:00
Sunli
3e19b23178 Remove unnecessary features for tide and warp integrations. 2020-09-26 08:35:17 +08:00
Koxiaet
507e94af8b Merge pull request #279 from robjtede/patch-1
do not include default features for actix-web
2020-09-25 19:54:21 +01:00
Koxiaet
2dcb9c654b Fix Tide tests 2020-09-25 19:50:04 +01:00
Rob Ede
ecefe679a7 do not include default features for actix-web 2020-09-25 19:16:15 +01:00
Koxiaet
25887b35ab Add integrations README 2020-09-25 18:25:52 +01:00
Koxiaet
f1833d1a0d Support batch requests in Tide 2020-09-25 18:03:51 +01:00
Koxiaet
aae4c29dd0 Reduce code duplication in batches in actix web 2020-09-25 17:38:12 +01:00
Sunli
23db311e42 2.0.0-alpha.16 2020-09-25 17:02:15 +08:00
Sunli
0260d23713 2.0.0-alpha.15 2020-09-24 18:29:48 +08:00
Koxiaet
70d2dbc39c Big improvements to tide integration 2020-09-23 18:30:03 +01:00
Koxiaet
4f732bfe3c Small improvements to actix-web integration 2020-09-23 17:30:22 +01:00
Sunli
e12ae8b236 Add BatchRequest support for actixweb and warp integrations. 2020-09-21 14:57:33 +08:00
Sunli
451f425813 Remove all GQL prefix. #208 2020-09-20 13:44:20 +08:00
Sunli
930a23a82c 2.0.0-alpha.14 2020-09-20 13:31:46 +08:00
Koxiaet
6095383019 Warp: Replace BoxedFilter with impl Filter 2020-09-19 18:10:46 +01:00
Sunli
b3ce8d13ef Update authors 2020-09-18 20:36:05 +08:00
Sunli
52b8ce93a9 Fix the problem that async_graphql_warp::graphql_subscription cannot be combined with other filters. 2020-09-18 19:21:35 +08:00
Sunli
f92c907954 2.0.0-alpha.13 2020-09-18 15:17:43 +08:00
Sunli
c1d4dbed87 2.0.0-alpha.12 2020-09-18 15:05:07 +08:00
Sunli
e645e9d999 Remove the GQL prefix of all macros. #208 2020-09-18 09:10:24 +08:00
Koxiaet
d52268523f Merge branch 'master' of github.com-koxiaet:async-graphql/async-graphql into master 2020-09-17 19:23:15 +01:00
Koxiaet
890b282dd9 Improve websockets 2020-09-17 19:22:54 +01:00
Sunli
8be719b1b0 2.0.0-alpha.11 2020-09-17 20:07:54 +08:00
Sunli
76257403e2 Add support for batch queries. 2020-09-17 19:54:12 +08:00
Sunli
5a340dc120 2.0.0-alpha.10 2020-09-17 13:24:53 +08:00