Skip to content
Snippets Groups Projects
Verified Commit b6ab24ac authored by Alex Timmermann's avatar Alex Timmermann
Browse files

debug: log full response of GeoAPI if not json

parent 1cda1ec5
No related merge requests found
......@@ -49,13 +49,18 @@ export class GeoApiClient implements ResolvesCoordinates, ResolvesCity {
'method': 'POST',
})
const body = await response.json()
const body = await response.text()
try {
const data = JSON.parse(body)
if (Object.hasOwn(data, 'errors')) {
this.logger.error(data.errors)
throw new GraphQLError("Can't fetchPlaceDetails for geolocationId " + geolocationId)
}
if (Object.hasOwn(body, 'errors')) {
this.logger.error(body.errors)
throw new GraphQLError("Can't fetchPlaceDetails for geolocationId " + geolocationId)
return body as GeoAPIResponse
} catch (e) {
this.logger.error(`Response is not JSON: "${body}"`)
throw e
}
return body as GeoAPIResponse
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment