diff --git a/docs/conf.py b/docs/conf.py
index a98be49d..8f79896f 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -440,4 +440,10 @@ epub_exclude_files = ['search.html']
# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'https://docs.python.org/': None}
+intersphinx_mapping = {
+ 'https://docs.python.org/': None,
+ 'python': ('https://docs.python.org/', None),
+ 'graphene_django': ('http://docs.graphene-python.org/projects/django/en/latest/', None),
+ 'graphene_sqlalchemy': ('http://docs.graphene-python.org/projects/sqlalchemy/en/latest/', None),
+ 'graphene_gae': ('http://docs.graphene-python.org/projects/gae/en/latest/', None),
+}
diff --git a/docs/index.rst b/docs/index.rst
index d1d3b210..d7aa9dca 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -9,3 +9,10 @@ Contents:
quickstart
types/index
relay/index
+
+Integrations
+-----
+
+* `Graphene-Django `_ (`source `_)
+* `Graphene-SQLAlchemy `_ (`source `_)
+* `Graphene-GAE `_ (`source `_)