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
- Usage of the new Client() and dealing wi...
Hey guys, just a quick one - we had some web traffic the other day and it ended up bombing out - To put in perspective of how the app works, we have a Nuxt Ap...
- [Beginner] CLI --queries Syntax Error & ...
Hi everyone! I am a beginner with Appwrite and trying to use the CLI, but I'm stuck with a syntax error. Any guidance would be greatly appreciated! 🙏 **Enviro...
- [SOLVED] curl error Number: 6 — function...
Hello, I invested a lot of time in this error in a fresh install of appwrite 1.8.1 and lasted until fix, this if for helping anyone that can have the same weird...