Resetting a session
The session can be restored to its default settings, clearing any customized session settings, by using the SESSION RESET clause.
Resetting all session settings
To reset all parameters, including graph, schema, and time zone, use the following:
GQL:
SESSION RESET
Alternatively, use the ALL PARAMETERS keywords:
GQL:
SESSION RESET ALL PARAMETERS
Alternatively, you can use the ALL CHARACTERISTICS keywords:
GQL:
SESSION RESET ALL CHARACTERISTICS
Resetting a single setting
The SESSION RESET clause also allows resetting individual settings.
To reset the schema, use the following:
GQL:
SESSION RESET SCHEMA
This query resets the schema session setting. If no default setting exists, the schema will remain unset.
To reset the graph, use the following:
GQL:
SESSION RESET GRAPH
The query resets the graph to a default graph. If no default setting exists, the graph will remain unset.
To reset the time zone...