File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ # v0.0.3
4+ * Edit package comments.
5+
36# v0.0.2
47* Improve conditional subquery output.
58* Edit README.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module github.com/shellyln/go-open-soql-visualizer
22
33go 1.18
44
5- require github.com/shellyln/go-open-soql-parser v0.0.7
5+ require github.com/shellyln/go-open-soql-parser v0.0.8
66
77require (
88 github.com/shellyln/go-nameutil v0.0.2 // indirect
Original file line number Diff line number Diff line change 11github.com/shellyln/go-nameutil v0.0.2 h1:K5qEhqTlfXs620C3ECdcM6I6KsQQV+jjFiMBonDII3s =
22github.com/shellyln/go-nameutil v0.0.2 /go.mod h1:pbg084sJdrtGqmzs0pT8fPkitcoY3eSJNi4aZxtA8O0 =
3- github.com/shellyln/go-open-soql-parser v0.0.7 h1:i+1Rtv8E6vTQ4c+bU5ci1HtyE6LDRkMz20ENFgVqpzo =
4- github.com/shellyln/go-open-soql-parser v0.0.7 /go.mod h1:yN6XuGQT9Nh/bAajdADTMph4Kh7t6Umm7OmifuwoN/s =
3+ github.com/shellyln/go-open-soql-parser v0.0.8 h1:ivYvQlIOcnRGHTv7v2AjQc/yzRHsTMcOlOY8ypTnNkI =
4+ github.com/shellyln/go-open-soql-parser v0.0.8 /go.mod h1:yN6XuGQT9Nh/bAajdADTMph4Kh7t6Umm7OmifuwoN/s =
55github.com/shellyln/takenoco v0.0.13 h1:/UQcrcsIlfrnGahhaQ25kj3kQnp7JMJUNuovxM6lZ6E =
66github.com/shellyln/takenoco v0.0.13 /go.mod h1:SF6jGo3dFtcTgstpXGTJoKXPOldlDwV8R5U1znhEets =
Original file line number Diff line number Diff line change 1+ // SOQL query visualizer powered by go-open-soql-parser and Mermaid.
2+ //
3+ // go-open-soql-parser:
4+ // https://github.com/shellyln/go-open-soql-parser
15package visualizer
26
37import (
@@ -6,6 +10,7 @@ import (
610 "github.com/shellyln/go-open-soql-parser/soql/parser/types"
711)
812
13+ // Returns Mermaid ER diagram definition.
914func Visualize (q * types.SoqlQuery ) string {
1015 relations := "erDiagram\n \n "
1116
You can’t perform that action at this time.
0 commit comments