OBJECT
Trigger
triggers may be used to automatically mutate the attributes of documents/connections before they are commited to the database
link GraphQL Schema definition
- type Trigger {
- # name is the unique name of the constraint
- String! :
- # gtype is the type of object the constraint will be applied to (ex: user)
- String! :
- # trigger is the arrow syntax expression that mutates the doc/connection before it
- # is stored ref: https://github.com/graphikDB/trigger
- String! :
- # if target_docs is true, this constraint will be applied to documents.
- Boolean! :
- # if target_connections is true, this constraint will be applied to connections.
- Boolean! :
- }