We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
query
When doing a query print the results in a table format.
Currently results are printed like this:
[ {'my_id': 1, `my_field: "one"}, {'my_id': 2, `my_field: "two"}, {'my_id': 3, `my_field: "three"}, {'my_id': 4, `my_field: "four"}, {'my_id': 5, `my_field: "five"} ]
This is especially unusable because this tool cannot be piped to something like jq for formatting - see #77.
It would be much easier to read results if they were printed like this:
my_id my_field 1 one" 2 two 3 three 4 four 5 five
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When doing a
query
print the results in a table format.Currently results are printed like this:
This is especially unusable because this tool cannot be piped to something like jq for formatting - see #77.
It would be much easier to read results if they were printed like this:
The text was updated successfully, but these errors were encountered: