Commit Graph

130 Commits

Author SHA1 Message Date
Sunli
4fa4b25ce4 Fix can no longer derive Union for union types with lifetimes. #311 2020-10-15 08:53:17 +08:00
Sunli
062bb10765 Update book 2020-10-14 09:17:00 +08:00
Sunli
59575fdb57 Update book 2020-10-14 09:10:06 +08:00
Sunli
39ba3b4aec Update book 2020-10-14 08:03:51 +08:00
Sunli
35ce31ef78 Update introduction.md 2020-10-14 07:36:54 +08:00
Sunli
d03ad2d50d Update book (#310)
Update book
2020-10-13 23:13:36 +08:00
Sunli
003631e76b Update define_simple_object.md 2020-10-13 10:52:04 +08:00
Sunli
38bab77bdb Update book 2020-10-13 10:36:57 +08:00
Sunli
48d45309be Update book. 2020-10-13 07:35:30 +08:00
Sunli
87ba51fdd0 Some improvements. 2020-10-10 16:28:07 +08:00
Sunli
e170d3b735 Update docs. 2020-10-07 13:40:03 +08:00
AurelienFT
53eab09f19 Rework guard (#296)
Rework guard #293
2020-10-06 17:16:51 +08:00
Roman Kudryashov
71fa94392a Fix custom scalars doc 2020-10-04 12:21:53 +03:00
Sunli
323dbf8a87 Update docs 2020-10-02 15:34:20 +08:00
Sunli
ad08f1dce7 Update docs 2020-10-01 11:24:30 +08:00
Sunli
dd537af508 Merge branch 'master' of https://github.com/async-graphql/async-graphql 2020-10-01 11:23:33 +08:00
Sunli
87d39318b5 Update docs. 2020-10-01 11:23:24 +08:00
Sunli
900392949e Merge pull request #291 from async-graphql/rework-errors
Rework errors
2020-10-01 11:18:23 +08:00
Chip Senkbeil
0a5a8f243d Add flatten union documentation 2020-09-30 21:44:47 -05:00
Koxiaet
768b666acd Merge master 2020-09-30 18:24:24 +01: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
e60864a18d Rework async-graphql-derive. #288 2020-09-29 16:06:10 +08:00
Sunli
97ffe25f9f Update book. 2020-09-28 14:43:12 +08:00
Sunli
c914622ff0 Update docs 2020-09-28 09:31:19 +08:00
Chip Senkbeil
0bb9f53d79 Add remote enum documentation
Add book documentation about remote option for enums (#276)
2020-09-27 14:02:10 -05:00
Sunli
451f425813 Remove all GQL prefix. #208 2020-09-20 13:44:20 +08:00
Sunli
e645e9d999 Remove the GQL prefix of all macros. #208 2020-09-18 09:10:24 +08:00
Sunli
8f163e9e32 Update book 2020-09-17 08:14:07 +08:00
Sunli
32927f9836 Update book 2020-09-15 11:56:05 +08:00
Sunli
b68d4147bc Update Book 2020-09-13 12:12:32 +08:00
Sunli
3b372edfd7 Udate docs 2020-09-13 11:51:10 +08:00
Sunli
3c01c5ed28 Update book. 2020-09-11 23:38:18 +08:00
Sunli
4194d17902 Release 1.18.0 2020-09-09 15:27:45 +08:00
Koxiaet
1ef34f2c39 Improve book and fix serde dependency 2020-09-01 06:47:22 +01:00
Sunli
ca5f91aee4 Update docs 2020-08-28 14:04:59 +08:00
Lee Benson
221163b3dd Merge pull request #1 from leebenson/patch-2
Update SUMMARY.md
2020-08-27 11:04:11 +01:00
Lee Benson
ec43ab1884 Update SUMMARY.md 2020-08-27 11:02:28 +01:00
Lee Benson
83ffa59184 Update merging_objects.md
Add subscription merging
2020-08-27 11:01:39 +01:00
Sunli
28d2041824 Add GQLMergedObject to docs/zh_CN 2020-08-11 11:42:19 +08:00
D1plo1d
84b16f5e36 Add GQLMergedObject to docs 2020-08-10 23:21:15 -04:00
Sunli
5df519047e Update book 2020-08-10 13:01:49 +08:00
Alaa Zorkane
630768a751 fix(docs): missing comment hashtag 2020-08-10 03:54:22 +01:00
Quentin Perez
e2aa14c1ad InputValueValidator: impl for MustBeZero 2020-08-03 14:43:15 +02:00
Sunli
503339f504 InputValueValidator::is_valid function now returns the Result type. #221 2020-07-30 09:43:51 +08:00
Sunli
c0ad65aafc Update input_value_validators.md 2020-07-30 09:29:07 +08:00
Sunli
2dc61013be Replace Value::Int and Value::Float with Value::Number. 2020-07-29 09:42:52 +08:00
Sunli
c73b51c255 Fix typo 2020-07-15 15:08:58 +08:00
Sunli
003e7bfb21 Update docs #205 2020-07-08 15:05:38 +08:00
Blaine Bublitz
c48f126fcd Use FieldResult for data(), add data_unchecked() for panic 2020-07-06 17:39:53 -07:00
Sunli
c24b10821b Update docs for federation #180 2020-06-19 13:03:17 +08:00