Remove unused type_name field to fix tests

This commit is contained in:
Georg Semmler 2018-04-19 16:25:33 +02:00 committed by Magnus Hallin
parent cfc3109109
commit 19e76865c9

View file

@ -60,7 +60,6 @@ where
context: &'a CtxT, context: &'a CtxT,
errors: &'a RwLock<Vec<ExecutionError>>, errors: &'a RwLock<Vec<ExecutionError>>,
field_path: FieldPath<'a>, field_path: FieldPath<'a>,
type_name: &'a str,
} }
/// Error type for errors that occur during query execution /// Error type for errors that occur during query execution
@ -330,7 +329,6 @@ impl<'a, CtxT> Executor<'a, CtxT> {
context: ctx, context: ctx,
errors: self.errors, errors: self.errors,
field_path: self.field_path.clone(), field_path: self.field_path.clone(),
type_name: self.type_name,
} }
} }
@ -358,7 +356,6 @@ impl<'a, CtxT> Executor<'a, CtxT> {
context: self.context, context: self.context,
errors: self.errors, errors: self.errors,
field_path: FieldPath::Field(field_alias, location, &self.field_path), field_path: FieldPath::Field(field_alias, location, &self.field_path),
type_name: self.type_name,
} }
} }
@ -381,7 +378,6 @@ impl<'a, CtxT> Executor<'a, CtxT> {
context: self.context, context: self.context,
errors: self.errors, errors: self.errors,
field_path: self.field_path.clone(), field_path: self.field_path.clone(),
type_name: type_name.unwrap(),
} }
} }
@ -590,7 +586,6 @@ where
context: context, context: context,
errors: &errors, errors: &errors,
field_path: FieldPath::Root(op.start), field_path: FieldPath::Root(op.start),
type_name: &op.item.name.map(|n| n.item).unwrap_or(""),
}; };
value = match op.item.operation_type { value = match op.item.operation_type {