class ConceptQL::Operators::Person
Public Instance Methods
i_point_at()
click to toggle source
# File lib/conceptql/operators/person.rb, line 16 def i_point_at [] end
my_domain()
click to toggle source
# File lib/conceptql/operators/person.rb, line 12 def my_domain :person end
these_point_at_me()
click to toggle source
# File lib/conceptql/operators/person.rb, line 20 def these_point_at_me # I could list ALL the domains we use, but the default behavior of casting, # when there is no explicit casting defined, is to convert everything to # person IDs # # So by defining no known castable relationships in this operator, all # domains will be converted to person [] end