Skip to content

Commit

Permalink
Clarify --raw flag help (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrodewig authored Dec 12, 2024
1 parent 0c7a40d commit 8ac0681
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/query.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function buildQueryCommand(yargs) {
raw: {
type: "boolean",
description:
"Output the full API response, including summary and query stats.",
"Output the raw JSON query response, including summary and query stats.",
default: false,
},
})
Expand Down
2 changes: 1 addition & 1 deletion src/commands/shell.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ async function shellCommand(argv) {
},
{
cmd: "toggleRawResponses",
help: "Enable or disable additional output. Disabled by default. If enabled, outputs the full API response, including summary and query stats.",
help: "Enable or disable additional output. Disabled by default. If enabled, outputs the raw JSON query response, including summary and query stats.",
action: () => {
shell.context.raw = !shell.context.raw;
logger.stderr(
Expand Down

0 comments on commit 8ac0681

Please sign in to comment.