diff --git a/fbchat/graphql.py b/fbchat/graphql.py new file mode 100644 index 0000000..aeef27c --- /dev/null +++ b/fbchat/graphql.py @@ -0,0 +1,30 @@ +# -*- coding: UTF-8 -*- +"""This file is here to maintain backwards compatability.""" +from __future__ import unicode_literals + +from .models import * +from .utils import * +from ._graphql import ( + FLAGS, + WHITESPACE, + ConcatJSONDecoder, + graphql_color_to_enum, + get_customization_info, + graphql_to_sticker, + graphql_to_attachment, + graphql_to_extensible_attachment, + graphql_to_subattachment, + graphql_to_live_location, + graphql_to_poll, + graphql_to_poll_option, + graphql_to_plan, + graphql_to_quick_reply, + graphql_to_message, + graphql_to_user, + graphql_to_thread, + graphql_to_group, + graphql_to_page, + graphql_queries_to_json, + graphql_response_to_json, + GraphQL, +)