zero-cli 2.6.0

A command line tool for Zero Secrets Manager
1
2
3
4
5
6
7
8
mutation UpdateTeamDescription($id: uuid!, $description: String!) {
  update_team_by_pk(
    pk_columns: { id: $id }
    _set: { description: $description }
  ) {
    id
  }
}