(mountId: string)
| 106 | }; |
| 107 | |
| 108 | export const findMountById = async (mountId: string) => { |
| 109 | const mount = await db.query.mounts.findFirst({ |
| 110 | where: eq(mounts.mountId, mountId), |
| 111 | with: { |
| 112 | application: { |
| 113 | with: { |
| 114 | environment: { |
| 115 | with: { |
| 116 | project: true, |
| 117 | }, |
| 118 | }, |
| 119 | }, |
| 120 | }, |
| 121 | compose: { |
| 122 | with: { |
| 123 | environment: { |
| 124 | with: { |
| 125 | project: true, |
| 126 | }, |
| 127 | }, |
| 128 | }, |
| 129 | }, |
| 130 | libsql: { |
| 131 | with: { |
| 132 | environment: { |
| 133 | with: { |
| 134 | project: true, |
| 135 | }, |
| 136 | }, |
| 137 | }, |
| 138 | }, |
| 139 | mariadb: { |
| 140 | with: { |
| 141 | environment: { |
| 142 | with: { |
| 143 | project: true, |
| 144 | }, |
| 145 | }, |
| 146 | }, |
| 147 | }, |
| 148 | mongo: { |
| 149 | with: { |
| 150 | environment: { |
| 151 | with: { |
| 152 | project: true, |
| 153 | }, |
| 154 | }, |
| 155 | }, |
| 156 | }, |
| 157 | mysql: { |
| 158 | with: { |
| 159 | environment: { |
| 160 | with: { |
| 161 | project: true, |
| 162 | }, |
| 163 | }, |
| 164 | }, |
| 165 | }, |
no outgoing calls
no test coverage detected