Skip to content

Commit d24440c

Browse files
committed
v0.0.3
1 parent 0a52c99 commit d24440c

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

Changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
# v0.0.3
4+
* Edit package comments.
5+
36
# v0.0.2
47
* Improve conditional subquery output.
58
* Edit README.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/shellyln/go-open-soql-visualizer
22

33
go 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

77
require (
88
github.com/shellyln/go-nameutil v0.0.2 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
github.com/shellyln/go-nameutil v0.0.2 h1:K5qEhqTlfXs620C3ECdcM6I6KsQQV+jjFiMBonDII3s=
22
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=
55
github.com/shellyln/takenoco v0.0.13 h1:/UQcrcsIlfrnGahhaQ25kj3kQnp7JMJUNuovxM6lZ6E=
66
github.com/shellyln/takenoco v0.0.13/go.mod h1:SF6jGo3dFtcTgstpXGTJoKXPOldlDwV8R5U1znhEets=

soql/visualizer/visualizer.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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
15
package visualizer
26

37
import (
@@ -6,6 +10,7 @@ import (
610
"github.com/shellyln/go-open-soql-parser/soql/parser/types"
711
)
812

13+
// Returns Mermaid ER diagram definition.
914
func Visualize(q *types.SoqlQuery) string {
1015
relations := "erDiagram\n\n"
1116

0 commit comments

Comments
 (0)