558eae91df
* Implemented most test cases from the specification * Unified error handling for all generators - Removed proc-macro-error -> not required -> use syn::Error - Everything below lib.rs uses proc_macro2::TokenStream instead of proc_macro::TokenStream - Replaced error handling in attribute parsers * WIP better error messages for *all* macros * Refactored GraphQLInputObject and minor tweaks - removed support for Scalar within a string ("DefaultScalarValue") - removed unraw function and replaced it with the built-in one - added error messages and return types for all functions within utils - added more constraints to fulfill the GraphQL spec * Fixed test-cases which are not compliant with the specification * Removed unused function * Added constrains, updated error messages, added marker * Added argument rename within impl_graphql and fixed `__` tests * Formatted and cleanup * Added GraphQLTypeAsync for input object * Moved codegen tests to separate module Nightly and stable produce different outputs, thus only test nightly. * Added IsInputType/IsOutputType traits for type checking Co-authored-by: Christian Legnitto <LegNeato@users.noreply.github.com>
30 lines
1.6 KiB
Text
30 lines
1.6 KiB
Text
error[E0277]: the trait bound `ObjectA: juniper::ast::FromInputValue<__S>` is not satisfied
|
|
--> $DIR/derive_incompatible_object.rs:6:10
|
|
|
|
|
6 | #[derive(juniper::GraphQLInputObject)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `juniper::ast::FromInputValue<__S>` is not implemented for `ObjectA`
|
|
|
|
|
= note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0277]: the trait bound `ObjectA: juniper::ast::FromInputValue<__S>` is not satisfied
|
|
--> $DIR/derive_incompatible_object.rs:6:10
|
|
|
|
|
6 | #[derive(juniper::GraphQLInputObject)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `juniper::ast::FromInputValue<__S>` is not implemented for `ObjectA`
|
|
|
|
|
= note: required by `juniper::ast::FromInputValue::from_input_value`
|
|
= note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0599]: no method named `to_input_value` found for struct `ObjectA` in the current scope
|
|
--> $DIR/derive_incompatible_object.rs:6:10
|
|
|
|
|
2 | struct ObjectA {
|
|
| -------------- method `to_input_value` not found for this
|
|
...
|
|
6 | #[derive(juniper::GraphQLInputObject)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ method not found in `ObjectA`
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
|
= note: the following trait defines an item `to_input_value`, perhaps you need to implement it:
|
|
candidate #1: `juniper::ast::ToInputValue`
|
|
= note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
|