Hasura Auth API + Postman collection
Hasura Auth API + Postman collection This link talk about Hasura Data API+ Postman Collection 1) Login Query: To login use http://auth.c101.hasura.me/login URL Snapshot of login query in Postman is Response to login query is { " hasura_roles ":[ " user " ], " auth_token ":"gv31vbfgfgfgfgec002hqhzr2gfgg0ey ", " hasura_id ": 2 } When a user logs in, a new session token is created for the user. It is set as cookie and also returned in auth_token of the response. In the above example, the session token is gv31vbfgfgfgfgec002hqhzr2gfgg0ey. The token and the associated user’s information is stored in the session store. 2) User Info: Used http://auth.c101.hasura.me/user/account/info URL to get use...