You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@
7
7
-**Relay:** Graphene has builtin support for Relay
8
8
-**Django:** Automatic *Django model* mapping to Graphene Types. Check a fully working [Django](http://github.com/graphql-python/swapi-graphene) implementation
9
9
10
+
Graphene also supports *SQLAlchemy*!
10
11
11
12
*What is supported in this Python version?***Everything**: Interfaces, ObjectTypes, Scalars, Unions and Relay (Nodes, Connections), in addition to queries, mutations and subscriptions.
12
13
@@ -18,8 +19,10 @@ For instaling graphene, just run this command in your shell
18
19
19
20
```bash
20
21
pip install graphene
21
-
#Or in case of need Django model support
22
+
#In case of need Django model support
22
23
pip install graphene[django]
24
+
# Or in case of need SQLAlchemy support
25
+
pip install graphene[sqlalchemy]
23
26
```
24
27
25
28
@@ -59,6 +62,7 @@ If you want to learn even more, you can also check the following [examples](exam
0 commit comments