[SOLVED]I am not getting the JSON Response that I returned from SDK Function which I have created.
- 0
- Databases
- Functions
- Web
Instead I am getting this response.
{
"success":true,"error":false,
"message":"New Item is successfully added to cart :)",
"data":{
"seller_id":"2312342423",
"location_id":"3242442412412",
"customer_id":"3242423421423",
"product_id":"s3rqr3453453",
"quantity":34,
"$id":"7328c4f1-5c02-4847-8c11-b9da3dc84bc3",
"$permissions":[],
"$createdAt":"2023-06-08T17:57:19.662+00:00",
"$updatedAt":"2023-06-08T17:57:19.662+00:00",
"$collectionId":"64816f544f942a48182b",
"$databaseId":"64816c7d76fe80dada91"
}
}
But I am sending this success response... I want this to come as a response after I have create the function execution.
I have solved the issue.
I have written 3rd parameter wile creating the execution as truw
. It should be false .
such that, I have gotten the object which contains response . I have parsed it and stored in a variable as shown below.
[SOLVED]I am not getting the JSON Response that I returned from SDK Function which I have created.
Recommended threads
- custom domain with CloudFlare
Hi all, it seems that CloudFlare has blocked cross-domain CNAME link which made my app hostname which is in CloudFlare, unable to create a CNAME pointing to clo...
- Type Mismatch in AppwriteException
There is a discrepancy in the TypeScript type definitions for AppwriteException. The response property is defined as a string in the type definitions, but in pr...
- What Query's are valid for GetDocument?
Documentation shows that Queries are valid here, but doesn't explain which queries are valid. At first I presumed this to be a bug, but before creating a githu...