There is an option to start a GRAKN console with a file:
". /grakn console - k [keyspace name] - f [your file path to gpl file]"
But in our case, the schema is common for multiple keyspaces/projects but the data for each is different, so we wanted to factor it out and not duplicate. And now we have two .gql files: one with schema and the other one with insert queries.
How can I apply the schema and upload the data into a keyspace using GRAKN console or Workbase?
Should I use Client API for that case or just starting a console twice (with schema file and with insert statements) will do the job?