gqlite icon indicating copy to clipboard operation
gqlite copied to clipboard

Gram file format question

Open moxious opened this issue 4 years ago • 2 comments

Notice the output syntax in the text on this: https://github.com/jakewins/gqlite/pull/36

Note that the "x" param is in quotes, when it needn't be, and how in the standard miserables.gram it doesn't show this same format:

(`Child1`:Person {name: "Child1", group:10})

Probably not harmful, but notable that the gram backend I guess is outputting unnecessary extra stuff, presumably not required by the gram format.

moxious avatar Mar 03 '20 18:03 moxious

@eastlondoner

jakewins avatar Mar 04 '20 03:03 jakewins

ah just seen this. It's because the output is being done using off the shelf json formatter and that is more correct json behaviour json::stringify(properties_gram_ready)

eastlondoner avatar Mar 22 '20 10:03 eastlondoner