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
I would like a CLI for working with tables, rows, columns, and cells.
Here are some ideas and examples of what I have in mind. If you have better ideas, give them a try.
TABLE
COLUMN
ROW
VALUE
valve get table TABLE
valve get row TABLE ROW
valve get cell TABLE ROW COLUMN
valve get value TABLE ROW COLUMN
valve get messages TABLE ROW COLUMN
valve validate row TABLE
valve validate TABLE ROW
valve validate TABLE ROW COLUMN VALUE
valve add row TABLE
valve add table PATH
valve update row TABLE ROW
valve update value TABLE ROW COLUMN VALUE
valve delete row TABLE ROW+
valve add message
valve update message
valve delete message MESSAGE_ID+
valve undo
valve redo
valve history
The text was updated successfully, but these errors were encountered:
lmcmicu
Successfully merging a pull request may close this issue.
I would like a CLI for working with tables, rows, columns, and cells.
Here are some ideas and examples of what I have in mind. If you have better ideas, give them a try.
TABLE
is a table nameCOLUMN
is a column name (or label?)ROW
is a 'row_number'VALUE
is a JSON stringvalve get table TABLE
return JSON representation of a tablevalve get row TABLE ROW
return JSON representation of a rowvalve get cell TABLE ROW COLUMN
return a JSON representation of a cell, including messagesvalve get value TABLE ROW COLUMN
return just the cell valuevalve get messages TABLE ROW COLUMN
return cell messagesvalve validate row TABLE
validate the addition of an input row, without insertingvalve validate TABLE ROW
validate the replacement of an input row, without insertingROW
isn't necessary if JSON includes 'row_number'?valve validate TABLE ROW COLUMN VALUE
validate the replacement of an input value, without insertingvalve add row TABLE
valve add table PATH
valve update row TABLE ROW
validate the replacement of an input row, without insertingROW
isn't necessary if JSON includes 'row_number'?valve update value TABLE ROW COLUMN VALUE
update a single cell valuevalve delete row TABLE ROW+
multiple rows? range of rows?valve add message
valve update message
valve delete message MESSAGE_ID+
valve undo
/valve redo
valve history
list (some) of the history table?The text was updated successfully, but these errors were encountered: