GraphQL.Language.AST.Operation.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( Operation other ) : bool
other Operation
return bool
        protected bool Equals(Operation other)
        {
            return string.Equals(Name, other.Name) && OperationType == other.OperationType;
        }