mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
80 lines
1.9 KiB
ReStructuredText
80 lines
1.9 KiB
ReStructuredText
Control access to certain data
|
|
==============================
|
|
|
|
.. contents:: Table of contents
|
|
:backlinks: none
|
|
:depth: 1
|
|
:local:
|
|
|
|
If you want to control access to sensitive fields in a table, you can either use views to expose only the safe fields
|
|
or :ref:`restrict access via permissions <restrict_columns>`.
|
|
|
|
The following section describes setting up a view for this purpose.
|
|
|
|
For example, to mask access to the ``article`` table and only expose the ``id``, ``title`` and ``rating`` columns
|
|
from this table:
|
|
|
|
Step 1: Create a view
|
|
---------------------
|
|
Open the Hasura console and head to the ``Data -> SQL`` tab.
|
|
|
|
Create a view with data from only the required (or safe) columns:
|
|
|
|
.. code-block:: SQL
|
|
|
|
CREATE VIEW article_safe AS
|
|
SELECT id, title, rating
|
|
FROM article;
|
|
|
|
Step 2: Modify permissions
|
|
--------------------------
|
|
You will need to revoke permission (if already granted) from the source table and grant access to the newly created
|
|
view. So, in our example, we do the following:
|
|
|
|
#. Remove access permissions from the ``article`` table
|
|
|
|
#. Grant access permissions to the ``article_safe`` view
|
|
|
|
Step 3: Query the view
|
|
----------------------
|
|
You can now query the newly created view like you would a regular table. For example, the following query will access
|
|
only the *safe* fields:
|
|
|
|
.. graphiql::
|
|
:view_only:
|
|
:query:
|
|
query {
|
|
article_safe {
|
|
id
|
|
title
|
|
rating
|
|
}
|
|
}
|
|
:response:
|
|
{
|
|
"data": {
|
|
"article_safe": [
|
|
{
|
|
"id": 1,
|
|
"title": "sit amet",
|
|
"rating": 1
|
|
},
|
|
{
|
|
"id": 2,
|
|
"title": "a nibh",
|
|
"rating": 3
|
|
},
|
|
{
|
|
"id": 3,
|
|
"title": "amet justo morbi",
|
|
"rating": 4
|
|
},
|
|
{
|
|
"id": 4,
|
|
"title": "vestibulum ac est",
|
|
"rating": 2
|
|
}
|
|
]
|
|
}
|
|
}
|