@@ -38,7 +38,7 @@ impl ShapeHash for q::Document {
3838
3939impl ShapeHash for q:: OperationDefinition {
4040 fn shape_hash ( & self , hasher : & mut ShapeHasher ) {
41- use graphql_parser :: query:: OperationDefinition :: * ;
41+ use graphql_tools :: parser :: query:: OperationDefinition :: * ;
4242 // We want `[query|subscription|mutation] things { BODY }` to hash
4343 // to the same thing as just `things { BODY }`
4444 match self {
@@ -69,7 +69,7 @@ impl ShapeHash for q::SelectionSet {
6969
7070impl ShapeHash for q:: Selection {
7171 fn shape_hash ( & self , hasher : & mut ShapeHasher ) {
72- use graphql_parser :: query:: Selection :: * ;
72+ use graphql_tools :: parser :: query:: Selection :: * ;
7373 match self {
7474 Field ( field) => field. shape_hash ( hasher) ,
7575 FragmentSpread ( spread) => spread. shape_hash ( hasher) ,
@@ -92,7 +92,7 @@ impl ShapeHash for q::Field {
9292
9393impl ShapeHash for s:: Value {
9494 fn shape_hash ( & self , hasher : & mut ShapeHasher ) {
95- use graphql_parser :: schema:: Value :: * ;
95+ use graphql_tools :: parser :: schema:: Value :: * ;
9696
9797 match self {
9898 Variable ( _) | Int ( _) | Float ( _) | String ( _) | Boolean ( _) | Null | Enum ( _) => {
@@ -151,7 +151,7 @@ impl ShapeHash for q::TypeCondition {
151151#[ cfg( test) ]
152152mod tests {
153153 use super :: * ;
154- use graphql_parser :: parse_query;
154+ use graphql_tools :: parser :: parse_query;
155155
156156 #[ test]
157157 fn identical_and_different ( ) {
0 commit comments