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