Skip to content

Commit

Permalink
DOC-1825-deprecate-vlac
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Lee authored and Victor Lee committed Oct 6, 2023
1 parent 6a4095f commit 5c5d494
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions modules/ddl-and-loading/pages/modifying-a-graph-schema.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@ ALTER VERTEX|EDGE Object_Type_Name DROP ATTRIBUTE (
attribute_name [',' attribute_name]* );
----

==== `ALTER VERTEX ... WITH` (Deprecated)


==== `ALTER VERTEX ... WITH` (Beta)
IMPORTANT: Tag-based Vertex-Access Access Control is deprecated as of October 2023. TigerGraph will be introducing a more flexible scheme in an upcoming release.

`The` statement `ALTER VERTEX WITH TAGGABLE` is used to mark a vertex type as taggable or untaggable.
Vertex types are untaggable by default.
Expand Down Expand Up @@ -216,6 +216,8 @@ DROP TUPLE Tuple_Name [',' Tuple_Name]*

=== `ADD TAG`

IMPORTANT: Tag-based Vertex-Access Access Control is deprecated as of October 2023. TigerGraph will be introducing a more flexible scheme in an upcoming release.

`ADD TAG` defines a tag for the graph. Tags can be used to create tag-based graphs, allowing for finer grain access control.

.Syntax for ADD TAG
Expand All @@ -227,6 +229,8 @@ ADD TAG <tag_name> [DESCRIPTION <tag_description>]

=== `DROP TAG`

IMPORTANT: Tag-based Vertex-Access Access Control is deprecated as of October 2023. TigerGraph will be introducing a more flexible scheme in an upcoming release.

`DROP TAG` drops a tag or multiple tags from the schema, and deletes the tag from each vertex to which it is attached. `DROP TAG` cannot be run if the tag to be dropped is used in the definition of a tag-based graph; the graph must be dropped first.

.Syntax for DROP TAG
Expand Down
4 changes: 3 additions & 1 deletion modules/ddl-and-loading/partials/load-statement.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ The token functions in the WHERE clause and those token functions used for attri
include::partial$token_functions_where.adoc[]
=== `TAGS` clause (Beta)
=== `TAGS` clause (Deprecated)
IMPORTANT: Tag-based Vertex-Access Access Control is deprecated as of October 2023. TigerGraph will be introducing a more flexible scheme in an upcoming release.
The `TAGS` clause specifies the tags to be applied to the vertices loaded by the `LOAD` statement.
Expand Down
4 changes: 3 additions & 1 deletion modules/querying/pages/func/vertex-methods.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,9 @@ No return value.
| The type of the attribute.
|===

== VLAC vertex alias methods
== VLAC vertex alias methods (Deprecated)

IMPORTANT: Tag-based Vertex-Access Access Control is deprecated as of October 2023. TigerGraph will be introducing a more flexible scheme in an upcoming release.

This section covers the vertex alias methods used to access and modify tags on vertices,

Expand Down

0 comments on commit 5c5d494

Please sign in to comment.