def get_all_locations():
    return tf.get_all_rows(Location)
Beispiel #2
0
def get_all_badges():
    return tf.get_all_rows(Badge)
def get_all_pic_likes():
    return tf.get_all_rows(PictureLike)
def get_all_comments():
    return tf.get_all_rows(Comment)
Beispiel #5
0
def get_all_users():
    return tf.get_all_rows(User)
Beispiel #6
0
def get_all_pictures():
    return tf.get_all_rows(Picture)
def get_all_rating():
    return tf.get_all_rows(Rating)
def get_all_categories():
    return tf.get_all_rows(Category)
def get_all_comment_likes():
    return tf.get_all_rows(CommentLike)
def get_all_reviews():
    return tf.get_all_rows(Review)
Beispiel #11
0
def get_all_user_has_badge():
    return tf.get_all_rows(UserBadge)
def get_all_visited_location():
    return tf.get_all_rows(VisitedLocation)