Skip to content

Commit e6b2159

Browse files
authored
Add some documentation to DjangoDebug
1 parent f4bbae2 commit e6b2159

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

graphene_django/debug/types.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,10 @@
44

55

66
class DjangoDebug(ObjectType):
7-
sql = List(DjangoDebugSQL)
7+
class Meta:
8+
description = "Debugging information for the current query."
9+
10+
sql = List(
11+
DjangoDebugSQL,
12+
description="Executed SQL queries for this API query.",
13+
)

0 commit comments

Comments
 (0)