Server actions
In the docs of server actions it says that the server actions for mutation only or just sending POST request
However, I didn't grasp this part maybe because I don't have enough knowledge or I'm wrong or mistaken, but I still can make GET request with the server actions for instance:
export const getAllUser = async () => {
const response = await fetch("xyz.com/users")
}