Skip to content

v1.7.2

Compare
Choose a tag to compare
@parkererickson-tg parkererickson-tg released this 01 Oct 16:21
· 19 commits to v1.7 since this release

[1.7.2] - 2024-10-01

Release of pyTigerGraph version 1.7.2.

Added:

  • delVerticesByType() function that allows all vertices of the specified type to be deleted at once.
    Arguements:
    vertexType:
    The name of the vertex type.
    permanent:
    If true, the deleted vertex IDs can never be inserted back, unless the graph is
    dropped or the graph store is cleared.
    ack:
    If the parameter is set to "none", the delete operation doesn’t need to get acknowledgment from any GPE.
    If it is set to "all" (default), the operation needs to get acknowledgment from all GPEs.
    Other values will raise an error.

    Usage:

    conn.delVerticesByType("Person")