hidden
The hidden clause removes specified properties from documents returned.
users.lunaql
query({
from({
users: {
hidden([
"email_address",
"password"
]);
};
});
});This will remove the email_address and password from the user documents.