I have a collection Called Relationship and i am fetching a doc from collection using its id
i have valid id but its not fetching doc and return undefined
TypeScript
export async function getRelationship(relationshipId: string) {
try {
const relationship = await databases.getDocument(
config.databaseId,
config.relationshipCollectionId,
relationshipId
);
if (relationship.documents.length === 0 || !relationship.documents) {
console.error("No Relationship Found");
return null;
}
return relationship.documents[0];
} catch (error) {
console.error("Error getting relationship:", error);
return null;
}
}```
TL;DR
Issue: Developer is unable to fetch document from the 'Relationship' collection using its ID. The function is returning 'undefined' even with a valid ID.
Solution: Check if the condition for checking relationship documents is correct. Update the condition to check if 'relationship.documents' is truthy before accessing its length property. This will ensure that the function does not throw an error and returns the document as expected.Recommended threads
- SELF HOSTING ISSUE, DATA NOT MIGRATING T...
Hey, devs, I recently tried to migrate my cloud instance to a self hosted version but my data is not transferred fully only the table structure is transferred ...
- No Document ID?
Hi I have a self hosted appwrite. My documents get a document ID but are not visible in the console. I don't know why this happens and how to fix this
- AppwriteException: Invalid query: Query ...
```js console.log(typeof interaction.user.id) console.log(interaction.user.id) const user_check = await TablesDB.listRows({ databaseId: "db", ...