# Query Parameters

# Including Relations

When building a query, you can instruct the API to include relations in the response.

const post = await Post.$query().with(['user', 'comments']).find(5); 

console.log(post.$relations.user);
console.log(post.$relations.comments);

# Soft Deletes

# Including trashed resources

const posts = await Post.$query().withTrashed().get();

# Returning only trashed resources

const posts = await Post.$query().onlyTrashed().get();
Last Updated: 2/24/2024, 10:37:01 AM