Update posko parameter to accept integer instead of string
This commit is contained in:
		| @@ -141,7 +141,7 @@ const GET_REKAPITULASI_GANGGUAN_PER_TANGGAL = gql` | ||||
| query rekapitulasiGangguanPerTanggal( | ||||
|     $dateFrom: Date! | ||||
|     $dateTo: Date! | ||||
|     $posko: String! | ||||
|     $posko: Int! | ||||
|     $idUid: Int! | ||||
|     $idUp3: Int! | ||||
| ) { | ||||
| @@ -181,7 +181,7 @@ query rekapitulasiGangguanPerTanggal( | ||||
|     const { onResult, onError,loading,refetch } = useQuery(GET_REKAPITULASI_GANGGUAN_PER_TANGGAL, { | ||||
|         dateFrom: new Date("2023-10-01").toISOString().slice(0, 10), | ||||
|         dateTo: new Date("2023-10-01").toISOString().slice(0, 10), | ||||
|         posko: "", | ||||
|         posko: 0, | ||||
|         idUid: 0, | ||||
|         idUp3: 0, | ||||
|     }) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user