Merge import in async_await
This commit is contained in:
parent
554ba34df1
commit
9506272b82
1 changed files with 3 additions and 7 deletions
|
@ -1,16 +1,12 @@
|
||||||
use crate::{
|
use crate::{
|
||||||
ast::{Directive, FromInputValue, InputValue, Selection},
|
ast::{Directive, FromInputValue, InputValue, Selection},
|
||||||
value::{Object, ScalarRefValue, ScalarValue, Value},
|
|
||||||
};
|
|
||||||
|
|
||||||
use crate::{
|
|
||||||
executor::{ExecutionResult, Executor},
|
executor::{ExecutionResult, Executor},
|
||||||
parser::Spanning,
|
parser::Spanning,
|
||||||
|
value::{Object, ScalarRefValue, ScalarValue, Value},
|
||||||
|
BoxFuture,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::BoxFuture;
|
use super::base::{Arguments, GraphQLType, is_excluded, merge_key_into};
|
||||||
|
|
||||||
use super::base::{is_excluded, merge_key_into, Arguments, GraphQLType};
|
|
||||||
|
|
||||||
#[async_trait::async_trait]
|
#[async_trait::async_trait]
|
||||||
pub trait GraphQLTypeAsync<S>: GraphQLType<S> + Send + Sync
|
pub trait GraphQLTypeAsync<S>: GraphQLType<S> + Send + Sync
|
||||||
|
|
Loading…
Reference in a new issue