Skip to content

Commit 83626d5

Browse files
committed
fix: documentation link in exception
1 parent 8872577 commit 83626d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene_sqlalchemy/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_query(model, context):
1616
if not session:
1717
raise Exception(
1818
"A query in the model Base or a session in the schema is required for querying.\n"
19-
"Read more http://graphene-python.org/docs/sqlalchemy/tips/#querying"
19+
"Read more http://docs.graphene-python.org/projects/sqlalchemy/en/latest/tips/#querying"
2020
)
2121
query = session.query(model)
2222
return query

0 commit comments

Comments
 (0)