File tree 4 files changed +11
-3
lines changed
4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ # v0.0.3
4
+ * Edit package comments.
5
+
3
6
# v0.0.2
4
7
* Improve conditional subquery output.
5
8
* Edit README.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module github.com/shellyln/go-open-soql-visualizer
2
2
3
3
go 1.18
4
4
5
- require github.com/shellyln/go-open-soql-parser v0.0.7
5
+ require github.com/shellyln/go-open-soql-parser v0.0.8
6
6
7
7
require (
8
8
github.com/shellyln/go-nameutil v0.0.2 // indirect
Original file line number Diff line number Diff line change 1
1
github.com/shellyln/go-nameutil v0.0.2 h1:K5qEhqTlfXs620C3ECdcM6I6KsQQV+jjFiMBonDII3s =
2
2
github.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 =
5
5
github.com/shellyln/takenoco v0.0.13 h1:/UQcrcsIlfrnGahhaQ25kj3kQnp7JMJUNuovxM6lZ6E =
6
6
github.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
1
5
package visualizer
2
6
3
7
import (
@@ -6,6 +10,7 @@ import (
6
10
"github.com/shellyln/go-open-soql-parser/soql/parser/types"
7
11
)
8
12
13
+ // Returns Mermaid ER diagram definition.
9
14
func Visualize (q * types.SoqlQuery ) string {
10
15
relations := "erDiagram\n \n "
11
16
You can’t perform that action at this time.
0 commit comments