class ActiveModelSerializers::Adapter::JsonApi::Relationship

def data_for(association)

TODO(BF): Avoid db hit on belong_to_ releationship by using foreign_key on self
def data_for(association)
  if association.collection?
    data_for_many(association)
  else
    data_for_one(association)
  end
end