class Neo4j::Schema::ExactIndexOperation
Public Class Methods
incompatible_operation_classes()
click to toggle source
# File lib/neo4j/schema/operation.rb 66 def self.incompatible_operation_classes 67 [UniqueConstraintOperation] 68 end
Public Instance Methods
exist?()
click to toggle source
# File lib/neo4j/schema/operation.rb 74 def exist? 75 label.index?(property) 76 end
type()
click to toggle source
# File lib/neo4j/schema/operation.rb 70 def type 71 'index' 72 end