Yossely Mendoza

Results 4 comments of Yossely Mendoza

hi @sriramgroot I'm using the library you mentioned like this ```js const base64 = require('base64topdf'); let decodedBase64 = base64.base64Decode(resp.data, 'file.pdf'); ``` but I'm getting a corrupt pdf file, not able...

I could solve my problem, I needed to add `responseType: 'arraybuffer'` option in the get request like: ```js Axios.get( URL, { headers: { Authorization: `Bearer TOKEN`, }, responseType: 'arraybuffer', //

@AdrianTudC without that option, the `response.data` is not parsed correctly, that's why I was getting a corrupt file when trying to save the pdf

I have a query with **joins** and I'm using `skip` and `take` but they're not being applied to entities so my result ends up with fewer entities than expected because...