Skip to content

Commit f16b8da

Browse files
kassensfacebook-github-bot
authored andcommitted
workaround rust-analyzer bug
Summary: Somehow this `use *` was confusing rust-analyzer to mix up `syntax::Argument` and `schema::Argument` in other places. No need to use `*` for just 2 types anyway, so switching to the explicit `use`. Reviewed By: alunyov Differential Revision: D33371613 fbshipit-source-id: 05d12d973309b7110953c5cf8ca370c322fb30b5
1 parent 15c7bf4 commit f16b8da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/crates/schema/src/definitions.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
use common::{Named, NamedItem, WithLocation};
9-
use graphql_syntax::*;
9+
use graphql_syntax::{ConstantValue, DirectiveLocation};
1010
use intern::string_key::{Intern, StringKey};
1111
use lazy_static::lazy_static;
1212
use std::collections::HashMap;

0 commit comments

Comments
 (0)