--- title: "`pg_property_graph_privileges`" id: infoschema-pg-property-graph-privileges pg_version: "20devel" --- ## 35.42. `pg_property_graph_privileges` The view `pg_property_graph_privileges` identifies all privileges granted on property graphs to a currently enabled role or by a currently enabled role. There is one row for each combination of property graph, grantor, and grantee. **pg_property_graph_privileges Columns** | Column Type | Description | | --- | --- | | `grantor` `sql_identifier` | Name of the role that granted the privilege | | `grantee` `sql_identifier` | Name of the role that the privilege was granted to | | `property_graph_catalog` `sql_identifier` | Name of the database that contains the property graph (always the current database) | | `property_graph_schema` `sql_identifier` | Name of the schema that contains the property graph | | `property_graph_name` `sql_identifier` | Name of the property graph | | `privilege_type` `character_data` | Type of the privilege: `SELECT` is the only privilege type applicable to property graphs. | | `is_grantable` `yes_or_no` | `YES` if the privilege is grantable, `NO` if not |