
I try to recive a large json response from eyternal graphQL, but I recive alwais the same issiue.
ERROR Error: Uncaught (in promise): SyntaxError: Unterminated string in JSON at position 999958
SyntaxError: Unterminated string in JSON at position 999958
My code looks like that:
async graphQl(body) {
const response = await fetch(url, {
method: 'POST',
headers: this.headers,
body: JSON.stringify(body),
});
if (response.ok) {
return await response.json();
} else {
throw new Error('GraphQL request failed: ' + response.status);
}
}
and
try {
const body = {
query: req.payload,
};
console.log("body", body)
let responseQL = await graphQl(body)
res.send(JSON.stringify(responseQL));
} catch (error) {
res.json({ error: error });
}

I checked server-side. And with Postman I dont have any problem on the external graphQL Server

There is a maximum response for Appwrite functions. After that, the data is truncated.

Is there a possibility to change it?

Not without modifying the source code. For such a large response, maybe you can use the storage API instead

I think the next version of functions might remove the limit

That would be great, Do you know when the next Version will be released?

some time this year 😅 hard to say for sure. we're actively working on it, though
Recommended threads
- Golang docs outdated
Golang docs on the website are update and some if not all methods are broken/ not updated
- Appwrite sites 404
Hello ! When I add a subdomain to a deployed website, it gives me a 404 error on said domain thus making the SSL processus not working and im not able to acces...
- Login redirect going to http not https
Hi yall, I'm having an issue where the redirect URL is going to http, instead of https. I think this is a bug. ``` https://accounts.google.com/o/oauth2/v2/auth...
