Skip to content

Commit 582ac59

Browse files
committed
Another docs test
1 parent 28f6b18 commit 582ac59

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/execution/execute.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ You can pass variables to a query via ``variables``.
4949
schema = graphene.Schema(Query)
5050
result = schema.execute(
5151
'''
52-
query getUser($id: ID) {
53-
user(id: $id) {
54-
id
55-
firstName
56-
lastName
57-
}
52+
query getUser($id: ID) {
53+
user(id: $id) {
54+
id
55+
firstName
56+
lastName
5857
}
58+
}
5959
''',
6060
variables={'id': 12},
6161
)

0 commit comments

Comments
 (0)