Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix documentation to use correct output format parameter 'dict'
Co-authored-by: jeffreyaven <[email protected]>
  • Loading branch information
Copilot and jeffreyaven committed Oct 2, 2025
commit 1c2f8757314ac92e1abbb82f10f7cf8502b6b921
6 changes: 3 additions & 3 deletions docs/source/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@ You can create a StackQL instance with a default output format, then override it
# 441087132,stackql-provider-registry
# ...

# This overrides to JSON/dict format for this query only
json_result = stackql.execute("select id, name from github.repos.repos where org = 'stackql'", output="json")
print(json_result)
# This overrides to dict format for this query only
dict_result = stackql.execute("select id, name from github.repos.repos where org = 'stackql'", output="dict")
print(dict_result)
# Output:
# [{"id":"443987542","name":"stackql"},{"id":"441087132","name":"stackql-provider-registry"},...]

Expand Down