Insert via Command Line Never Returns

When I run the command below, it never returns.

Is it a bug or for insert should I use another command?

$STARDOG/bin/stardog query coredb "insert data{ http://test.com/test http://geophy.data/system#instanceProperty2 12} "

Best,

Samur,

I’m not sure why that command would never return for you. When I run it on the CLI I get an error that says Not a valid query string or a file: Lexical error at line 1, column 29. Encountered: "47" (47), after : "test.com"

But either way, your syntax is incorrect. IRIs in a SPARQL query need to be surrounded by <>.

Stephens-iMac:support stephen$ stardog query support "insert data{<http://test.com/test> <http://geophy.data/system#instanceProperty2> 12} "
Update query processed successfully in 00:00:00.150.

Thank you Stephen! I see the problem now.