Merge branch 'server-side-integration' of github.com:defuj/eis into server-side-integration

This commit is contained in:
bagus
2024-05-03 09:20:22 +07:00
5 changed files with 254 additions and 216 deletions

View File

@@ -2534,40 +2534,53 @@ export const queries = {
}
}
`,
dataDialihkanKePoskoLain: gql`
query DaftarGangguan(
ssdaftarGangguanDialihkanKePoskoLain: gql`
query ssdaftarGangguanDialihkanKePoskoLain(
$dateFrom: Date!
$dateTo: Date!
$posko: Int
$idUid: Int
$idUp3: Int
$posko: Int!
$idUid: Int!
$idUp3: Int!
$skip: Int
$take: Int
$requireTotalCount: Boolean
$sort: [SortInput]
$filter: [FilterInput]
) {
daftarGangguanDialihkanKePoskoLain(
ssdaftarGangguanDialihkanKePoskoLain(
dateFrom: $dateFrom
dateTo: $dateTo
posko: $posko
idUid: $idUid
idUp3: $idUp3
skip: $skip
take: $take
requireTotalCount: $requireTotalCount
sort: $sort
filter: $filter
) {
alamat_pelapor
pembuat_laporan
durasi_recovery_time
durasi_response_time
waktu_lapor
waktu_dialihkan
waktu_recovery
waktu_response
idpel_nometer
keterangan_pelapor
media
nama_pelapor
no_laporan
no_telp_pelapor
nama_posko_lama
nama_posko_baru
status_akhir
waktu_recovery
waktu_response
totalCount
data {
no_laporan
pembuat_laporan
waktu_lapor
waktu_dialihkan
waktu_response
waktu_recovery
durasi_response_time
durasi_recovery_time
id_posko_lama
nama_posko_lama
id_posko_baru
nama_posko_baru
status_akhir
idpel_nometer
nama_pelapor
alamat_pelapor
no_telp_pelapor
keterangan_pelapor
media
}
}
}
`,