typedb / typedb-console

TypeDB Console: CLI for TypeDB and TypeDB Cluster
https://typedb.com
Mozilla Public License 2.0
7 stars 16 forks source link

Allow TypeQL-style comments in scripts #181

Closed alexjpwalker closed 3 years ago

alexjpwalker commented 3 years ago

What is the goal of this PR?

We've added support for TypeQL-style comments in scripts. So, for example, you can now pass the following file to --script:

# create the database
database create social_network
transaction social_network schema write
source social_network_schema.tql
commit

What are the changes implemented in this PR?