执行代码是: LCQuery query = LCQuery('user_information');
query.whereNear('location', currentUserGeo);
query.limit(limit);
query.whereContainedIn('interest', currentUserInformation['interest']);
query.whereNotEqualTo('user', currentUserInformation['user']);
return await query.find().catchError((onError) {});
返回是: