Skip to content

Commit e05ee81

Browse files
committed
Edit comments
1 parent b7f1e2f commit e05ee81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

soql/parser/types/types.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ type SoqlQueryMeta struct {
255255
NextColumnId int `json:"nextColumnId,omitempty"` // next column id (a number of columns)
256256
NextViewId int `json:"nextViewId,omitempty"` // next view id (a number of views)
257257
NextQueryId int `json:"nextQueryId,omitempty"` // next query id (a number of queries)
258-
ViewGraph map[int]SoqlGraphLeaf `json:"viewGraph,omitempty"` //
258+
ViewGraph map[int]SoqlGraphLeaf `json:"viewGraph,omitempty"` // object graph
259259
}
260260

261261
type SoqlQuery struct {
@@ -271,8 +271,8 @@ type SoqlQuery struct {
271271
IsAggregation bool `json:"isAggregation,omitempty"` // It is an aggregation result or not; Not used for "PerObjectQuery"
272272
IsCorelated bool `json:"isCorelated,omitempty"` // Co-related query if true
273273
PostProcessWhere []SoqlCondition `json:"postProcessWhere,omitempty"` // Post-processing conditions (Conditions to apply after being filtered in the query for each object)
274-
QueryId int `json:"queryId,omitempty"`
275-
Meta *SoqlQueryMeta `json:"meta,omitempty"`
274+
QueryId int `json:"queryId,omitempty"` // query unique id
275+
Meta *SoqlQueryMeta `json:"meta,omitempty"` // meta information
276276

277277
// ParameterizedValues map[string]struct{} `json:"-"` // TODO:
278278
// DateTimeLiterals map[string]struct{} `json:"-"` // TODO:

0 commit comments

Comments
 (0)