zero-cli 2.6.0

A command line tool for Zero Secrets Manager
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query TeamProjects($id: uuid!, $userId: uuid!) {
  project(
    where: {
      _and: [
        { team: { id: { _eq: $id } } }
        { team: { members: { member: { id: { _eq: $userId } } } } }
      ]
    }
    limit: 1000
  ) {
    id
    name

    usageHistories(order_by: { updatedAt: desc }, limit: 1) {
      updatedAt
    }
  }
}